RSS Feeds are widely used throughout the internet today and on all kinds of websites. From websites like Digg to most blogs. If you want to display an RSS feed on your website its probably easier than you think.
For this example I'm going to show you how to display the RSS feed for The Tutorial Blog using PHP.
The Code
The first two lines of code that we write are going to be what retrieve the RSS feed.
$xml = new SimpleXMLElement($file);
Now the next thing we do is use the foreach function so for each item found do something with it
What are code will do is simply echo the titles of all the items found within the feeds. If you also want to include a link to the feed you can do this by printing to screen $feed->link.
All the code together should look something like this.
$file = file_get_contents("http://www.thetutorialblog.com/feed/");
$xml = new SimpleXMLElement($file);
foreach($xml->channel->item as $feed){
echo $feed->title.'<br>';
}
?>
Thanks for taking the time to read this tutorial. I hope you have learned something.
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.

Simple and useful. Thanks.
Brilliant. I have looked so hard for a good tutorial on getting contents of an RSS feed as opposed to making one!
Very useful and practical tutorial..
http://www.codebounce.com/php
Great tutorial. Thanks
Thank you for this! So many other tutes provide far more detail than I am after.
If I could just ask one question - how can I wrap the title in its link so people can click on it?
Cheers
Never mind
Thank you!
Genius just the snip i was looking for
Cool One..!! Bt there is no Linking Function in it
Great Tutorial want to learn more about xml and php.