[eluser]webthink[/eluser]
Hi,
If you are using an older version of codeigniter, you will need to manually issue a SET NAMES utf8 command to mysql. If you are using a later (post 1.6) version, that should be handled for you automatically, so long as you have something like
Code:
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
in your database config. Double check that your DB, and your tables, are set to use utf8. Also, unless codeigniter does this automatically, which I don't think it does, you should send
Code:
header("Content-Type: text/html; charset=UTF-8");
before any other output.
That should do it.