PHP中文字符无法插入Mysql

发布于 2025-01-08 03:25:40 字数 443 浏览 0 评论 0原文

我使用GET传递参数,如果数据是英文,则成功将数据保存到mysql,但如果数据是中文,则不会插入任何内容。

我检测到数据编码是 utf-8,发现使用我的 macbook 可以正常工作,但不能在 ie 上工作。奇怪,知道有什么问题吗?

例如

query("insert into Info  values ('".$email."','".$_GET['name']."')");

,如果 $name 是中文,则此操作不成功。我尝试了 echo $_GET['name'] 并正常显示,但是无法插入数据库的数据为空。

query("insert into Info  values ('".$email."','香港')");

此方法成功将数据插入数据库

I am using GET to pass parameters, succesful save data to mysql if the data is in english, but nothing insert if the data is in chinese.

I have detected the data encoding is utf-8, found out that using my macbook it works fine, but not working on ie. Strange, any idea what's wrong with it?

For example

query("insert into Info  values ('".$email."','".$_GET['name']."')");

This not successful if $name is chinese. I have tried echo $_GET['name'] and display normally, howerver the data can't inserted to databse is blank.

query("insert into Info  values ('".$email."','香港')");

This method successful insert data to database

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初相遇 2025-01-15 03:25:40

首先,您确实应该使用 POST 来执行这些操作。

检查以确保您要插入的列具有正确的编码 - 也许可以导出表结构供我们查看您是否不确定。

正如 Daan 所说,您可以尝试

query('SET NAMES UTF8'); 

在插入查询之前。

Firstly, you really should use POST for these operations.

Check to ensure that the column you are inserting into has the correct encoding - perhaps export the table structure for us to see if you're not sure.

As Daan said, you could try

query('SET NAMES UTF8'); 

Before your insert query.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文