虽然你给0分提出这么多麻烦的问题,但还是帮你回答下。在使用session和header之前是不能有输出的,print_r和echo都是用来输出的
if ($_POST["password"] != "111")
{
echo "";
exit;
}
else
{
session_start();
$_SESSION["login"] = "ok";
header('Location:index.php');
// echo "";
}
试试
你要写绝对地址。