登录后,用户不会被重定向到PHP中的特定页面

时间:2013-04-21 14:29:10

标签: php sql

用户登录数据库后,应将其重定向到index.php,但我收到的是警告消息: “无法修改标题信息 - 已经发送的标题(输出从...开始”

这是我的输入表格:

<form action="login.php" method="post">
<div id="header"><h2 class="sansserif">Login</h2></div>
<table>

    <tr>
        <td>Enter Username:</td>
        <td> <input type="text" name="username" size="20"></td>
    </tr>

    <tr>
        <td>Enter Password:</td>
        <td><input type="password" name="password" size="20"></td>
    </tr>
    <tr>
         <td><input type="submit" value="Log In"></td>
         <td><a href="signup.html">Sign Up</a></td>
   </tr>
 </table>
</form>

这是我的代码:

<?php 
include("configuration.php"); 
$username = $_POST["username"];
$password = $_POST["password"];
$match = "select id from $table where username = '".$_POST['username']."'and password =         '".$_POST['password']."';"; 
$qry = mysql_query($match);
$num_rows = mysql_num_rows($qry); 
if ($num_rows <= 0) { 
echo "Sorry, there is no username $username with the specified password.";
echo "Try again";
exit; 
} else {
$_SESSION['user']= $_POST["username"];
header("Location:index.php");
}?>

2 个答案:

答案 0 :(得分:0)

检查PHP标记之前或之后没有空格。我可以在开始时看到3个空格,这可能导致“无法修改标题信息”。

答案 1 :(得分:0)

首先尝试注释header()函数检查浏览器上是否有任何输出。如果没有检查你的配置。也许正在回复或打印某些内容。