为什么以下查询无效? 我正在使用md5并且它没有做任何事情。
$query = "select email from user where email='".$email."' and password='".md5('$password')."'";
有什么建议吗?
答案 0 :(得分:1)
您需要删除md5加密中的引号
md5('$password') to md5($password)
$query = "select email from user where email='".$email."' and password='".md5($password)."'";