Friday, May 22, 2009

How to redirect to another page from a php page


In php, you can easily redirect a visitor from one page to another apge. The following code snippet is used for this redirection:

header("Location:somepage.php");

// This will redirect the user to somepage.php

?>

No comments:

Post a Comment