I have a form which is submitted into a mysql database. The database is set to UTF-8_GENERAL and the rows are using the same character coding as well.
But when I sub
Its good that you are using mysql_real_escape_string()!
I think the problem might be, that in some side-step form page -> header file -> core file -> mysql macro file -> inserting to DB etc.. If you are using some CMS method of course.
So basically:
mysql_query("SET NAMES utf8");
Header("Content-Type: text/html; charset=UTF-8");
If you have mastered those steps, it should be fixed. If not, then at least you have debuged out alot of possible issues :)