This answer part of the reference GPT, GPT_Pro better solve the problem
There may be coding problems, first to confirm the website encoding format, such as utf-8, gbk, etc., And whether the encoding format of the database is the same as the encoding format of the website. If not, you can modify the database character set to make it consistent with the website.
In MySQL, you can modify the character set with the following statement:
ALTER DATABASE CHARACTER SET utf8 COLLATE utf8_general_ci;
or directly modify default-character-set=utf8 in mysql.ini, and restart the MySQL service to take effect.
Also, note that the character set is declared in the html file and the
in the tagcharset="utf-8">
This will solve the garble problem.
If the answer is helpful, please accept it.