Topic: extern.php with utf8 db & utf8 wordpress, but iso display : a solution
I'm one of the many extern.php file user. The point is to display the lasts posts made to my forum in my wordpress blog.
But since I'm french, my friends like to write in french too. Using utf8 both in the mysql database (4.12) and wordpress (1.52), I was annoyed since I cannot display datas in the correct way; "é", "à" and so one where systematically converted to a "?", a "feature" of the iso encoding.
How to :
1/ go to extern.php, line 247
2 / add the following line :
$cur_topic['subject'] = utf8_encode($cur_topic['subject']);
3/ that's all