1

次のクエリを実行しようとしています。

$sth = "UPDATE `users` SET users_password VALUES (:hash) WHERE users_id = $users_id";
$q = $conn->prepare($sth);
$q->execute(array(':hash'=>$hash));

しかし、私は以下を取得しています:

Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VALUES ('$2y$12$Ao46iC7W9Lj8FFfSmAaeoeQs9O.3QRVtDbHAyvpzH90YIUN61ma8i') WHERE us' at line 1'

何か案は?

(そして、はい、コードはtry、catchブロックではありませんが、いくつかのことを試しているだけです)

4

1 に答える 1

0

これを変える

$sth = "UPDATE `users` SET users_password VALUES (:hash) WHERE users_id = $users_id";

$sth = "UPDATE `users` SET users_password = :hash WHERE users_id = $users_id";
于 2013-04-17T12:32:05.683 に答える