php - 从页面重定向到另一个页面

时间:2014-01-20 15:48:40

标签: php forms redirect

我在一个文件form.php中有一个带登录表单的页面,当我按下ok时,它会调用post_form.php文件来检查插入的数据。如果数据没问题,我必须自动打开文件confirm.php,我该怎么做?

3 个答案:

答案 0 :(得分:2)

您可以使用PHP的header()功能。 但请确保在header()调用之前没有输出,否则它将失败。

if(HERE YOUR CONDITION) {
    header("Location: confirm.php");
}

答案 1 :(得分:0)

ob_clear(); //Make sure you've done ob_start() or not output anything to the browser    
header('Location: confirm.php');
exit;

答案 2 :(得分:0)

put header(“Location:confirm.php”);在你的if条件下。