Thread
:
Auto-moving to another webpage
View Single Post
Re: Auto-moving to another webpage
(#
9
)
Fierce Recon
Guest
Status:
Posts: n/a
Re: Auto-moving to another webpage -
11-01-2004
a php version:
PHP Code:
header
(
"Location: http://www.php.net"
);
die();
but you can't write anything on the page (even a linebreak) or it'll give you a very nasty error.
Fierce Recon