I Am realy need to hidding my browser tab when program executing a lines in my php program but the browser and other tab still live
for example
<?php
function hideBrowsertab(){
//in here program will hiding tab but browser still live
}
//action 1 bla bla bla
//action2 bla bla
//action 3 call hideBrowertab function
hideBrowsertab();
?>
How to hidding browser tab in action 3 ?