Před použitím DB zkuste nastavit kódování klienta.
mysql_query("SET NAMES 'utf8'");
Pokud výše uvedené nefunguje, použijte funkce kódování/dekódování utf8:
<?
$string ="Étuit";
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<?
echo $string; // echo's '?tuit'
echo utf8_encode($string); // echo's 'Étuit'
?>