dra87370 2014-04-27 10:36 采纳率: 100%
浏览 22
已采纳

PDO更新查询集JSON字符串[重复]

This question already has an answer here:

can i update table and set JSON string with PDO? Because PDO is removing "\" character and diacritics is not working please help.

->query("UPDATE products SET name = '".$new_name."' WHERE shop = '1' AND id = 'a9t8'");
</div>
  • 写回答

1条回答 默认 最新

  • douke3335 2014-04-28 17:02
    关注

    You are using PDO yet still open to SQL injection.

    You should prepare your query, that's the whole point of PDO

    $sql = "UPDATE products SET name = :new_name WHERE shop = :shop AND id = :id";
    $statement = $conn->prepare($sql);
    $statement->bindValue(":new_name", $new_name);
    $statement->bindValue(":shop", '1');
    $statement->bindValue(":id", 'a9t8');
    $statement->execute();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?