6CC001 Workshop - week 06
From mi-linux
Jump to navigationJump to searchMain Page >> Web Application Development >> Workbook >> Week 06
Today let’s play with RSS feeds. There are 2 things you can do:
- Consume an existing third-party feed
- Create your own feed, for other users to consume
Consume an existing third-party feed
Since PHP 5, consuming an XML file (remember that’s all an RSS feed is!) couldn’t be more simple:
$feed_url = "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml"; // Get data from feed file $response = file_get_contents($feed_url); // Insert XML into structure $xml = simplexml_load_string($response); // Browse structure foreach($xml->channel->item as $one_item) echo $one_item->title."<BR>";