By Jordie Bodlay
So, you have an RSS feed link, but what can you do with it? The most common use is to add it to an RSS reader program such as Google Reader, FeedReader, Awasu and their popular online cousin BlogLines.com. Yahoo, MSN and Google also allow you to input feed URL's for your own customized homepage with news stories and articles from websites of your own choosing.
Once downloaded, all you need to do is place the program in a sub folder on your web site (purely to be tidy, it can be placed anywhere). Then run a simple bit of PHP code on your web page:
<?php
include_once('magpierss/rss_fetch.inc');
$rss = fetch_rss("http://www.interspire.com/content/articlerss.php");
echo "<h3>" . $rss->channel['title'] . "</h3><p>";
echo "<ul>";
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
echo '<li><a href="'.$href.'">'.$title.'</a></li>';
}
echo "</ul>";
?>