Auch wenn's erledigt ist, hier der richtige Weg:
PHP-Quellcode:
<?php
header("
Content-type: text/html; charset=utf-8");
// siehe php.net:
// "This is the preferred way to change the charset. Using mysql_query() to set it (such as SET NAMES utf8) is not recommended. See the MySQL character set concepts section for more information."
mysql_set_charset("
utf8");
Wenn man diese zwei Sachen beachtet, sollte nichts mehr schief gehen.
Alternativ kann man statt der header-Zeile auch eine .htaccess (bei Apache Webservern) erstellen:
Liebe Grüße,
Valentin