Oppure puoi fare un str_replace() come ho fatto per il mio sito:
Codice PHP:
<?php
# stringa d'esempio che verrà modificata
$mexarr = "èàìòù'<>";
$mexarr = str_replace("è","è",$mexarr);
$mexarr = str_replace("à","à",$mexarr);
$mexarr = str_replace("ì","ì",$mexarr);
$mexarr = str_replace("ò","ò",$mexarr);
$mexarr = str_replace("'","codice nella descrizione",$mexarr);
$mexarr = str_replace("<","<",$mexarr);
$mexarr = str_replace(">",">",$mexarr);
# Stampo la stringa modificata
echo $mexarr;
?>
Dove c'è scritto "codice nella descrizione" devi mettere queste lettere è un file txt perchè se non il forum me lo traduce dall'html.
Io nel mio sito uso questo mio piccolo script.
Ciaoooooooooooooooo