Ciao a tutti.
Quando salvo le stringhe nel database le filtro con
Codice PHP:
htmlentities($strENT_NOQUOTES"UTF-8"); 
Ora però se ho una stringa tipo:

Codice PHP:
$prova "è una <a href='#'>prova</a>"
Quando la voglio stampare

Codice PHP:
echo html_entity_decode($prova); 
al posto della 'è' viene fuori un punto interrogativo dentro ad un rombo, in pratica non viene riconosciuto, mentre il tag 'a' è tutto ok. Se invece non utilizzo 'html_entity_decode' la 'è' va bene, ma il tag 'a' no...