Change default Charset
How do I change the default charset from UT开发者_如何转开发F-8 to ISO-8859-1 in phpMyAdmin?
You need to go to phpmyadmin > information_schema > schemata >
change your DEFAULT_CHARACTER_SET_NAME
with query
Find your config.inc.php and add or edit the line
$cfg['DefaultCharset'] = 'iso-8859-1';
You can change the default charset in your config.php
$cfg['DefaultLang'] = 'ISO-8859-1';
精彩评论