When I run this sql from the MySql Admin panel:
UPDATE CH_HRA_questions SET question = '稱謂' WHERE q_id = 1
it works correctly, and in the table I can see the correct Chinese characters.
But when I run the same update statement from PHP, I get:
稱謂
The collation of the field is utf8_unicode_ci, any ideas what I'm doing wrong?
Many thanks