MySQL 变音符号问题

发布于 2024-10-07 01:16:36 字数 206 浏览 2 评论 0原文

我对元音变音有很大的问题。 我有一张普通的注册表。当我单击“提交”时,我通过 jQuery Ajax 将数据发送到 php 脚本。 该脚本将所有内容放入我的数据库中。

数据库排序规则是 utf8_general_ci 但元音变音显示得像废话:D 当我向后端数据库提交一个新用户时,只有 php 可以使用变音符号。

我的错在哪里? 想不通。

谢谢 :)

i have a big problem with umlauts.
I have a normal registration Form. And when i click on Submit, i send the data via jQuery Ajax to a php Script.
This Script puts everything in my database.

The Database Collation is utf8_general_ci but the umlauts are displayed like crap :D
When i submit a new User to that database in the backend, where only php plays it works with umlauts.

Where is my fault?
Can´t figure it out.

Thanks :)

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

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

发布评论

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

评论(1

裂开嘴轻声笑有多痛 2024-10-14 01:16:36

确保该链中的所有位置都使用 UTF-8。您的页面需要使用 UTF-8 编码,以便浏览器正确提交用户数据。检查请求的 Content-Type 标头。您的网络服务器应使用 传递 MIME 类型;编码=UTF-8

Make sure that you're using UTF-8 everywhere in that chain. Your page needs to be encoded in UTF-8, so that the browser submits the user-data correctly. Check the Content-Type header of the request. Your webserver should deliver the MIME-type with ; encoding=UTF-8.

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