如何在mysql表中保存其他语言?
嗨,我必须在 mysql 中保存印地语。我怎样才能做到这一点。任何人都知道解决方案请帮助我。
Hi I have to save hindi languages in mysql. how can I do that. any one knows the solution please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将所有文本存储为 UTF8,然后您才能看到印地语字符。您可以通过如下查询更新列以使用 UTF8:
由于您使用 PHP,请确保所有 PHP 脚本都保存为 UTF8。您还可以使用以下查询设置连接字符集:
这将确保您的 Web 服务器和数据库服务器使用 UTF8 进行通信。
You need to store all text as UTF8, then you'll be able to see Hindi characters. You can update a column to use UTF8 with a query like the following:
Since you use PHP, make sure that all your PHP scripts are saved as UTF8. You can also set the connection charset with the following query:
This will ensure that your web server and database servers communicate using UTF8.