> Is there any PHP function that works like ColdFusion's location tag? > After a certain execution, I wish to leave the current PHP > page entirely and go to another page. Is this possible?
That's a HTTP Header, so you want to use the ... Header() command.
A Location header is what does the redirection.
<?php Header("Location: http://url.of.site/path/to/file.html"); ?>
J
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

