您的SQL语法有误。检查与您的MySQL服务器版本相对应的手册,以在'=附近使用正确的语法

$_email= $connection-> real_escape_string("[email protected]");

$checkSql  = "SELECT * ";
$checkSql .= "FROM customer_registration";
$checkSql .= "WHERE ";
$checkSql .= "EMAIL=" . $_email ;

$result = $connection-> query($checkSql);


上面的php / mysql查询中的SELECT语句中的错误似乎是什么?

最佳答案

$checkSql .= "Email = \"$_email\"";

09-25 20:49