<?php
echo $_REQUEST['uname'];
echo $_REQUEST['pass'];
$res= $mysql_query("select * from `sec` where uname='$_REQUEST['uname']' AND `pass`='$_REQUEST['pass']'");
if(mysql_num_rows($res)>0)
{
header('location:home.php')
}
else
{
header('location:index.php')
}
?>
这是什么错误:header information cannot modify...
即使用户名和密码是正确的,它也没有重定向到另一个页面并给出这个警告..为什么会出现这个错误?