Ciao a tutti, ho un tabella UTF8_general_ci

nella quale sono presenti simboli come & è , à ...

ho notato che quando cerco di generare un XML (che con altre tabelle funzionavano ottengo)

Warning: SimpleXMLElement::addChild() [simplexmlelement.addchild]: unterminated entity reference Pizza in /var/www/domain.com/xmlfeed.php on line 164


nel mio codice ho qualche cosa del tipo:

$aaa->addChild('date', strip_tags(utf8_encode($row{'Date'})) );
$aaa->addChild('title', strip_tags(utf8_encode($row{'Title'})) );


Cosa sbaglio?? Cosa devo modificare nel codice??

Grazie infinite!!!