I had this previously in my normal mysql_* connection:
mysql_set_charset(\"utf8\",$link); mysql_query(\"SET NAMES \'UTF8\'\");
Do I need it
Prior to PHP 5.3.6, the charset option was ignored. If you're running an older version of PHP, you must do it like this:
exec("set names utf8"); ?>