MySQL 变音符号问题
我对元音变音有很大的问题。 我有一张普通的注册表。当我单击“提交”时,我通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保该链中的所有位置都使用 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
.