PHP Redirect to new page after form submission

前端 未结 5 810
不知归路
不知归路 2021-01-23 21:51

I have a form, which redirects the user to \"page1.php\" after the form is submitted. What I want to do is to redirect the user to \"page2.php\" after the form is submitted, but

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-23 22:36

    In your 'page1.php' processor, add a 'header' redirect to 'page2.php'.

    header("Location: page2.php");
    exit;
    

提交回复
热议问题