先記下,免得以後想不起來又到處去找!
PHP操作資料庫的時候,資料庫中資料使用UTF8編碼,在讀出來的時候,顯示的全是???????問號亂碼,找了一些資料原來是在讀取之前進行一次編碼設定:
複製程式碼 程式碼如下:
create table tablename
(
id int not null auto_increment,
title varchar(20) not null,
contnet varchar(300) defalut null,
primary key ('id')
MyISAM DEFAULT CHARSET =UTF8;
複製程式碼 代碼如下:
複製程式碼
代碼如下:
然後mysql_query("insert into tablename .....") 讀出資料前執行:
複製程式碼
程式碼如下:
以上就介紹了php mysql PHP MYSQL亂碼問題,使用SET NAMES utf8校正,包括了php mysql方面的內容,希望對PHP教學有興趣的朋友有幫助。