anything? have tried a few free ones with no luck...
dont need to morph it or change it just include it as is...
dont need to morph it or change it just include it as is...

<?php
$feedURL = "http://rss.cnn.com/rss/cnn_topstories.rss";
$xml = simplexml_load_file($feedURL);
foreach ($xml->channel as $record){
$title = $record->title;
$link = $record->link;
$description = $record->description;
$image_url = $record->image->url;
echo "<a href=\"$link\">$title</a>";
echo "<br /><img src=\"$image_url\">";
}
foreach ($xml->channel->item as $record){
$title = $record->title;
$link = $record->link;
$description = $record->description;
$pubDate = $record->pubDate;
echo "<br /><br /><a href=\"$link\">$title</a> $pubDate";
echo "<br />$description";
}
?>


Comment