I am working on an exiting database. All fields seems to be UTF8
Problem is : when I edit some fields in phpmyadmin: I got these chars
En athlétisme
and selecting ISO-8859-1 works fine
mysql_select_db('myDB');
mysql_set_charset('ISO-8859-1', $con1);
whereas
mysql_select_db('myDB');
mysql_set_charset('utf8', $con1);
gives
En athlétisme
Question : How can I make it clean and re-encode it all in UTF8 ?