php标题("位置:home.php");没有正确地重定向我

时间:2017-01-03 07:26:29

标签: php

我正在制作登录和注册系统,但我的标题重定向并没有正常工作,而不是在登录时将我重定向到我的home.php页面,它将我带到我的index.php。 / p>

以下是代码:

$_SESSION["user_login"] = $user_login;
header("Location: home.php");
  exit();
} else {
    echo 'That information is incorrect, try again';
    exit();

为什么将表单操作设置为index.php但是当我将其更改为home.php时它会将其发送给我但不会登录。 这是表单代码:

<form action="index.php" method="POST">
    <input type="text" name="user_login" size="25" placeholder="Username" /><br /><br />
    <input type="text" name="password_login" size="25" placeholder="Password" /><br /><br />
    <input type="submit" name="login" value="Login">
</form>

1 个答案:

答案 0 :(得分:-2)

exit();

终止程序,因此请将其删除并重试。