Solve the problem of Chinese garbled characters in phpmyadmin. . .
Go to the root directory of phpMyAdmin and open the following file:
libraries/select_lang.lib.php
1. Find the line with "zh-gb2312", Change 'zh-gb2312' to 'zh-gb2312-utf-8'
Why add it like this? That's because the server will filter out languages without "-utf-8". In libraries/database_interface.lib.php line 168, according to English: "To prevent confusion", or if you don't change 'zh-gb2312' It becomes 'zh-gb2312-utf-8', you can remove the filtering. Just remove that if and it will be OK.
2. Find the line "$mysql_charset_map = array("
and change 'gb2312' => 'gb2312',
to 'gb2312' => 'latin1',
Save, OK, enter phpMyAdmin management, select the language chinese simplified (zh-gb2312-utf-8)
Remember to select the language chinese simplified (zh-gb2312-utf-8)!