connetti(); // crea un nuovo oggetto ed istanzia le caratteristiche del feed $rss = new UniversalFeedCreator(); $rss->useCached(); $rss->title = "Ultime notizie da doremifasol.org"; $rss->description = "Ultime 10 news da doremifasol.org"; $rss->link = $_CONFIG['url']; $rss->encoding = "iso-8859-1"; $rss->syndicationURL = $_CONFIG['url'].$PHP_SELF; // legge il contenuto di un database $res = $db->esegui("SELECT N.*, A.nome FROM news N, utenti A WHERE N.autore=A.id ORDER BY N.id DESC LIMIT 10"); // scorre tutto il contenuto della query al database while ($data = $db->FetchArray($res)) { $item = new FeedItem(); $item->title = $data['titolo']; //$item->link = $data->news_url; $item->description = strip_tags($data['contenuto'], "

"); $item->date = str_replace(' ', 'T', $data['data'])."+01:00"; $item->source = "https://www.doremifasol.org"; $item->author = $data['nome']; $item->link = $_CONFIG['url']."/notizia.php?id=".$data['id']; // aggiunge la news alla lista di elementi del feed $rss->addItem($item); } //echo "

";
//print_r($rss);
echo $rss->createFeed("RSS2.0");

//$rss->saveFeed("RSS2.0", "feed.xml");
?>