Hi this is a basic question : I wrote a simple php that executes a command on my server. When it's done, I want to automatically close this php page and open www.myURL.com. How do I do this? Thanks joe
Well <? //Your PHP Code Here //You need to make sure that there is no output from the PHP code header("location:www.myURL.com"); ?> HTML: Good luck