header()
Posted: Mon Jan 19, 2004 5:45 pm
Code: Select all
<?php
header("Location: http://www.8th-dimension.net/mysite.php"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
header("Location: http://www.8th-dimension.net/mysite.php"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>