Im still trying to get my head around UTF8 character encoding and MySQL.
Recently I decided to encode in UTF8 because a plugin I was using needed the data to be in that format otherwise it wouldn't work.
Everything appears to be working but one problem I'm having is data from one field is coming back as:
£100 when I expecting:
£100. However its just that
one field as the other fields on the same page appear correct with similar content. The only difference I see is this one field is MEDIUMTEXT while the others are VARCHAR.
I converted the database already:
ALTER DATABASE databasename CHARACTER SET utf8 COLLATE utf8_unicode_ci;
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
How can I get this field to display correctly, what am I doing wrong ?
Im using PHP as my scripting language with mysqli functions.