How can I get a PHP function go to a specific website when it is done running?
For example:
You could always just use the tag to refresh the page - or maybe just drop the necessary javascript into the page at the end that would cause the page to redirect. You could even throw that in an onload function, so once its finished, the page is redirected
window.location = 'http://www.yourdomain.com'";
?>