In French and Deutsch version we have "�" instead good caracters.
It's because datas have been saved in ISO format and browser think it's UTF-8.
But I see you're using UTF-8 format on website (dunno on database, probably ISO) but the easiest way to solve this problem generally is to
Code
use utf8_encode()
Code
utf8_decode()
If your database is in utf8 format, you should use
Code
mysql_query("SET NAMES 'utf8'");
before your request.
And of course you can force utf8 encoding on your php scripts with
Code
<?php header('Content-type: text/html; charset=UTF-8'); ?>
I dunno if I'm clear but it's kinda 5AM here and I'm done.
If you need help, you can ask me of course.