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 char コードを入力しようとしましたが、サイトに null が出力されます。
私のデータベース (MYSQL) は UTF8 に設定されています。他のすべての外国人キャラクターは問題なく出てきます。
PHPとApacheを使用しています。
SQLクエリでもUTF8に言及してください。それは問題を解決します。
更新しました:
<?php $link2 = mysql_connect('localhost','user1','pass1',TRUE); mysql_selectdb('db2',$link2); mysql_set_charset('utf8',$link2); ?>