I had this previously in my normal mysql_* connection:
mysql_set_charset(\"utf8\",$link);
mysql_query(\"SET NAMES \'UTF8\'\");
Do I need it
I just want to add that you have to make sure your database is created with COLLATE utf8_general_ci or whichever collation you want to use, Else you might end up with another one than intended.
In phpmyadmin you can see the collation by clicking your database and choose operations. If you try create tables with another collation than your database, your tables will end up with the database collation anyways.
So make sure the collation for your database is right before creating tables. Hope this saves someone a few hours lol