My data in one of my Database columns is not displaying correctly from UTF8.
I recently converted the MySQL database to UTF8 using:
ALTER DATABASE databasename CHARACTER SET utf8 COLLATE utf8_unicode_ci;
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
When displaying data using my PHP script one field appears to not display correctly:
£25
When Im expecting:
£25
Other fields on the same page correctly display £25. The only difference I see is that they are VARCHARs and the problem field is MEDIUMTEXT.
Why does this one field not display correctly (it isn't treated any differently by my script).
Any help ?