gpt4 book ai didi

php - 将 HEX 数据上传到 MySQL 数据库

转载 作者:行者123 更新时间:2023-12-01 00:49:12 26 4
gpt4 key购买 nike

我正在将 HEX 数据上传到 MySQL 数据库。

$sql= "INSERT into MyTable VALUES ($date,$data)";
if (mysqli_query($con,$sql)) {
echo "success";
} else {
echo "failed". mysqli_error($con);
}

这里的$data是HEX数据,那个数据有27,相当于ASCII中的'。所以我得到一个错误

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 'xxxxxxxxxx' at line 1.

我该如何解决这个问题?

最佳答案

查看mysql_real_escape_stringmysqli_prepare以保护您的查询。您的问题是您将原始数据直接转储到 SQL 中。这不仅会导致您出错,还会导致 incredibly insecure .

关于php - 将 HEX 数据上传到 MySQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17924394/

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