gpt4 book ai didi

php - 插入文本包含保留字?

转载 作者:行者123 更新时间:2023-11-29 05:35:10 24 4
gpt4 key购买 nike

我正在尝试使用包含保留字的字符串更新列。

$val1 = "Boat's Devices"; // inserts fine
$val2 = "Boat's Float"; // fails

错误:

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 's Float'

mysql_query("UPDATE phrases SET head_title = '$val1', title = '$val2' WHERE p_id = '$p_id'") or die(mysql_error());

最佳答案

您必须对插入 MySQL 数据库的所有字符串进行转义。使用 mysql_real_escape_string 或等效项来执行此操作。这应该可以解决您的问题。如果没有,请发布您的 SQL 查询,以便我们查看。

关于php - 插入文本包含保留字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11379901/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com