是否可以使用header将用户重定向到页面,但是将重定向页面中的PHP代码执行到新页面?
//This is my form handling page
if (empty($first_name)) {
header('Location: index.php');
echo 'Please fill in username';
}
答案 0 :(得分:0)
你不能使用类似的东西:
if(empty($first_name)){
include 'index.php';
echo 'Please fill in username';
exit();
}