Alvaro Martinez wrote:

Hi!
I'm a beginner. I want to redirect from one php page to another php page and
I dont know what method to use.
How can I do it?
Thanks



http://php.net/header says

<?php
header("Location: http://www.php.net/";); /* Redirects the browser to the php website */
exit;                        /* makes sure the code below doesn't get ecexuted */
?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to