Per preparare i dati in modo che vengano letti correttamente, usare questa funzione:
function format_xml($testo){
//return $testo;
if(isset($testo) && strlen($testo)>0){
$testo = str_replace("'", "'", $testo);
$testo = strip_tags($testo);
$testo = html_entity_decode($testo, ENT_QUOTES,
...
read more