how to redirect into next page

Discussion in 'PHP' started by mahiraj, Sep 13, 2007.

  1. #1
    Hi,
    I want to redirect into the next page after clicking the submit button.
    then please tell me the php code for that .
    thanks....
     
    mahiraj, Sep 13, 2007 IP
  2. krt

    krt Well-Known Member

    Messages:
    829
    Likes Received:
    38
    Best Answers:
    0
    Trophy Points:
    120
    #2
    Assuming a very simple PHP script, I assume you want either:
    <form action="nextpage.php" ...
    Code (markup):
    OR
    <?php
    if (isset($_POST)) {
    
        // process form data
    
        // then redirect:
    
        header('Location: nextpage.php');
        exit;
    
    }
    ?>
    PHP:
     
    krt, Sep 13, 2007 IP