"Help" phpMyAdmin. The Chinese character field inside has become a question mark.
------Solution--------------------
may be the encoding of the insert data problem, you see in the CMD interface whether this is also the case, if so, it is likely to be in the library when the encoding and database encoding inconsistent
------Solution--------------------
What is the page code, change the next code to try.
------Solution--------------------
Change the page encoding to GBK try, DOS can also go to MySQL to see if garbled.
------Solution--------------------
All stems from the absence of execution mysql_query (' Set names UTF8 ');
------Solution--------------------
References:
mysql_query (' Set names UTF8 '); Do you want to add this to the head of the file? Where is the specific add??
$conn = @mysql_connect (' localhost ', ' root ', ') or Die (' Could not connect: '. Mysql_error ());
mysql_select_db (' Test ', $conn);
mysql_query ("Set names ' GBK '");//Add it here.
------Solution--------------------
Look at your operational database code.