Hi,

> How can I forward the user to another page?

Redirecting works like this.

<?
    header("Location: http://www.somepage.com/here.htm";);
?>

full URL not needed if the file is local to the domain,

IE

<?
    header("Location: index.php");
?>

You can even pass arguments like this
<?
    header("Location: index.php?d=1&p=3");
?>

Also see http://www.php.net/header

good luck!


On Tue, 16 Jul 2002 06:39:31 -0700 (PDT)
"Joćo Paulo Batistella" <[EMAIL PROTECTED]> wrote:


 


Regards,

James Mclean


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

Reply via email to