我的mysql插入语句有问题。 我有一个表单,正确地向插入文件提交utf-8字符(我已经检查过POST变量)。
现在,当我在我的数据库中查看INSERT时,没有变音符号,而是问号。
错误必须在insert语句之前。
如果我从我的数据库输出(手动输入)内容,则会正确显示变音符号。
// echo $_POST["title"];
// outputs correctly with special chars: "Some german title with umlaute ä ö ü"
mysql_query("INSERT INTO videos (youtube_hash, title, description, category, created) VALUES ('".mysql_real_escape_string($_POST["hash"])."', '".mysql_real_escape_string($_POST["title"])."', '".mysql_real_escape_string($_POST["desc"])."', '".mysql_real_escape_string($_POST["cat"])."', '".time()."')") or die(mysql_error());
// database entry looks like this: "Some german title with umlaute ? ? ?"
我希望有人可以帮助我:)
编辑:
htmlentities()完成了这项工作!
答案 0 :(得分:4)
当您将数据从php插入mysql数据库时,请尝试使用utf8_decode();
包装字符串数据 utf8_decode(string)
正如php手册所说,这将utf8转换为ISO-8859-1(latin1);
您可能还想尝试iconv()功能。 这使您可以选择更多的输入编码和所需的输出编码
string iconv ( string $in_charset , string $out_charset , string $str )
如果仍然没有帮助,请尝试将您要插入的Mysql表列上的Collation更改为latin1_swedish_ci。
答案 1 :(得分:1)
使用HTML实体并不是解决问题的最佳解决方案。理想情况下,您应该将数据存储在数据库中,并且仅使用htmlentities()
进行显示。如果您希望以除HTML之外的其他方式显示/导出此数据,该怎么办?
我建议阅读PHP / MySQL中的字符集处理。这是我最近写的一篇文章:How to Avoid Character Encoding Problems in PHP
如果你还有问题,请再次发帖。
答案 2 :(得分:0)
尝试将MySQL DB的字符集从Latin1更改为UNICODE。