用phpmyadmin添加mysql数据库,然后用php操作数据库出现乱码的解决办法:1:确认phpmyadmin用的mysql字符集为utf-8 unicode(utf8);mysql连接校对为
utf8_general_ci,language为中文-chinese simplified2:确认每个数据表的“整理为”utf8_general_ci;3:在php连接mysql数据库后加个语句来指定数据库的字符集, 例如:$conn=mysql_connect("localhost","root","你的密码"); //连接数据库 mysql_query("set name 'utf8'"); //指定数据库的字符集为utf8 php程序员站