带有标题的PHP重定向然后从重定向页面执行新页面上的代码

时间:2014-08-04 01:22:43

标签: php html header

是否可以使用header将用户重定向到页面,但是将重定向页面中的PHP代码执行到新页面?

//This is my form handling page

if (empty($first_name)) {
    header('Location: index.php');
    echo 'Please fill in username';
}

1 个答案:

答案 0 :(得分:0)

你不能使用类似的东西:

if(empty($first_name)){
   include 'index.php';
   echo 'Please fill in username';
   exit();
}