Hi guys, Im in need of getting the image <enews:image> from the eonline feeds but not sure how to go about getting them. Any suggestions?
PHP Code:$url = "http://www.eonline.com/syndication/feeds/rssfeeds/topstories.xml";
$rss = fetch_rss($url);
echo "<font size='4' face='Verdana'><b>" . $rss->channel['title'] . "</b></font>";
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
$des = $item['description'];
echo "<a href='$href' target='_blank'><b>$title</b></a><br>
$des";
}




Bookmarks