Previously contacted several times MYSQL5, but because the Chinese garbled can not solve and has been using 4.0. MYSQL5 supports a variety of encoding methods, as long as the stored and read encoding consistent will not be garbled, such as gb2312.
1. Specify the encoding gb2312 in the Web page
It is best to execute the SQL statement before executing it:
mysql_query ("SET NAMES GB2312");
2. Modifying the Apache configuration file httpd.conf
Adddefaultcharset GB2312
3. Modifying the MYSQL5 configuration file
Default_character_set = gb2312
This method was tested successfully under FC5 and Windows XP.
http://www.bkjia.com/PHPjc/486548.html www.bkjia.com true http://www.bkjia.com/PHPjc/486548.html techarticle previously contacted several times MYSQL5, but because the Chinese garbled can not solve and has been using 4.0. MYSQL5 supports a variety of encoding methods, as long as the stored and read encoding consistent will not be garbled, such as ...