密 码:
checklogin.php代码(检测登录): $name=$_POST[name]$pass=$_POST[password]session_start()//这个可以维持登录状态,可以参照session的使用\x0d\x0a//登录检查函数 function login_state($uid,$user_shell){ $sql="SELECT * FROM `user` WHERE `name`='$name'"\x0d\x0a$query=@mysql_query($sql) or die(mysql_error())\x0d\x0a $us=is_array($row=@mysql_fetch_array($query))\x0d\x0a$user_shell=$us ? $user_shell==$row[password]:FALSE\x0d\x0aif($user_shell){echo "alert('登录成功')"\x0d\x0a return $row\x0d\x0a}else{\x0d\x0a echo "alert('您暂时不能浏览该页面,请先登录')location.href='login.php'"\x0d\x0a} }login_state($name,$password)?>\x0d\x0a希望可以帮到您,如果还有问题可以联系2458285853
if($result=mysql_fetch_array($check_query))这条有错误!
php中,= 和 == 和 === 都不是一回事!
而且,if语句也不能赋值运算
否则,永远不会成立
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)