一段管理员登陆验证程序,用户名和密码明明是正确,可验证就是错误 |
|
作者: panos 发布日期: 2006-5-23 查看数:
21 出自: http://www.phpx.com |
//checklogin.php <? Include("../include/conn.inc.php"); @session_start(); $username=htmlspecialchars($HTTP_POST_VARS["name"]); $password=htmlspecialchars($HTTP_POST_VARS["ps"]); //where zh='".$username."' and che='1'" $exec="select * from guanli"; if($result=mysql_query($exec)) { if($rs=mysql_fetch_array($result)) { if($rs["zh"]==$username AND $rs["mm"]==md5($password)) { $_SESSION=array(); $_SESSION['name']=$username; $_SESSION['mm']=$password; echo "<script>location.href='all.php';</script>"; } else {echo "<script>alert('帐号或密码错误!');top.location.href='index.php';</script>"; } } else { echo "<script>alert('帐号或密码错误!');top.location.href='index.php';</script>"; } } else { echo "<script>alert('数据库连接出错!');location.href='index.php';</script>"; } ?> @session_write_close() //end 以前好好的啊 我在数据库里的密码都是MD5加密的 用户名和密码都是正确的,怎么老提示'帐号或密码错误“ 高手帮帮忙啊 |
|
【论坛浏览】
【我来说两句】 【打印】 【大】 【中】 【小】 【关闭】 |