PHP header location 页面跳转的问题

2025-04-06 06:53:30
推荐回答(3个)
回答1:

虽然你给0分提出这么多麻烦的问题,但还是帮你回答下。在使用session和header之前是不能有输出的,print_r和echo都是用来输出的

回答2:

if ($_POST["password"] != "111")
{
echo "";
exit;
}
else
{
session_start();
$_SESSION["login"] = "ok";

header('Location:index.php');
// echo "";
}

试试

回答3:

你要写绝对地址。