php输出乱码的解决
php文件
[code]<? header('Content-Type: text/html; charset=utf-8');?>[/code]
HTML文件
[code]<META content="text/html; charset=utf-8" http-equiv="Content-Type">[/code]
还有,文件要另存为UTF-8格式
MYSQL数据库连接时也要设置下
[code]mysql_query("set names 'utf8'");[/code]