Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据库中有这个字符:
É
但结果是
G
我尝试将 html 字符代码输入到数据库中,但这会导致网站上的输出为空。
我的数据库(MYSQL)设置为 UTF8。所有其他外来字符都很好。
我使用 PHP 和 apache。
在你的 sql 查询中也提到 UTF8。它将解决问题。
更新:
<?php $link2 = mysql_connect('localhost','user1','pass1',TRUE); mysql_selectdb('db2',$link2); mysql_set_charset('utf8',$link2); ?>