Codice PHP:
<?php
echo '&titolo=<font size="10" face="Verdana">[b]Online[/b]</font>';
echo 
'&date=<font size="10" face="Verdana">08/11/2004</font>';
echo 
'&news=<font size="2" face="Verdana">Testo della news</font>';
?>
codice:
carico = new LoadVars();
carico.path = this;
carico.onLoad = function(success) {
     if (success) {
////////////////////////////////////////////////////////
          this.path.titolo.html = true;
          this.path.titolo.htmlText=this.titolo;
          this.path.date.html = true;
          this.path.date.htmlText=this.date;
          this.path.news.html = true;
          this.path.news.htmlText=this.news;
////////////////////////////////////////////////////////
     } else {
          trace("Errore nel caricamento file!")
     }
};
carico.sendAndLoad("test.php",carico,"POST");
prova così