如何保护POST功能
这个问题在这里已经有了答案:
你应该在你的密码值上使用md5()而不是mysql_real_escape_string()的返回值。
所以首先纠正这一点:
passad = mysql_real_escape_string(md5($_POST["password"]));
由于你的passad变量被散列,我想你必须比较这样的散列变量
if(md5("passadmin") == $passad)
链接地址: http://www.djcxy.com/p/3727.html