Maison > Questions et réponses > le corps du texte
P粉3156805652023-08-25 17:13:59
Changé en :
$sth = "更新 rpacks SET rpacks_location = :location WHERE rpacks_id = :id";
P粉2486022982023-08-25 13:33:14
Votre update
查询中存在错误,因为您使用了 insert
syntaxe de requête.
La requête suivante est la bonne :
$sql = "UPDATE rpacks SET rpacks_location = :location WHERE rpacks_id = :id"; $stmt = $conn->prepare($sql); $stmt->execute([':location'=>$location, ':id'=>$id]);
Référence : http://dev.mysql.com/doc/refman/5.0/en/update.html