tags:

views:

25

answers:

1

I want to parse a websites news section. It has a RSS subscribe button but the outlook looks odd and I'm not sure how to parse it.

http://www.networkroi.co.uk/DesktopModules/ArticleManager/ArticleRss.aspx?id=324&pid=0

It's not in XML which would have been a lot easier.

Here is the news page with that link on it - http://www.networkroi.co.uk/News/tabid/99/Default.aspx

I would like to parse it with PHP if possible, though I really just want to dislay the info as it looks there..

Any help most appreciated

Jonesy

+3  A: 

Take a look at excellent SimplePie class for parsing rss feeds with PHP.

SimplePie is a very fast and easy-to-use class, written in PHP, that puts the 'simple' back into 'really simple syndication'. Flexible enough to suit beginners and veterans alike, SimplePie is focused on speed, ease of use, compatibility and standards compliance.

Sarfraz