i haven't found the answer at this question browsing around so i guess asking it's ok...
My php code reads from my Mysql Database a string and prints it, here is the code
$sql2=mysql_query("SELECT * FROM Corsi WHERE Nome='$Ln_1[Ln_1]'");
$Ln_1_a = mysql_fetch_array($sql2);
$Ln_1_descr = $Ln_1_a[5];
But special chars, such as 'è' 'à' 'ò' etc. are printed as '�'. My Mysql Encoding is utf8 and also in my html header i have utf8 encoding, so what is wrong with this?
Thanks in advance