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.
我想从我的数据表中回显一些信息。现在我有一个问题,我使用变音符号(如ä,ö)的每一列都没有出现。本专栏的全部内容不只是出现变音符号。
在 mysql 中使用 latin1_swedish_ci。
有任何想法吗?
Try to use UTF-8 (just run this query before select something from the DB)
<?php ... mysql_query("SET NAMES 'utf8'"); ... ?>