md5在php中查询无效

时间:2016-07-13 15:14:03

标签: php

为什么以下查询无效? 我正在使用md5并且它没有做任何事情。

 $query = "select email from user where email='".$email."' and password='".md5('$password')."'";

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

您需要删除md5加密中的引号

md5('$password') to md5($password)

$query = "select email from user where email='".$email."' and password='".md5($password)."'";