How To Bring Latest News Articles From Some Website

In my yii website I want to display a list of latest news related to property and when the user clicks on the link it should display the article on my website. The list would come from gulf property news The news article content coming from http://gulfnews.com/business/property/gulf/nakheel-rings-up-sales-of-more-than-dh419m-1.1107279. In my website the content would be displayed according to my theme and layout. How can I accomplish this ?

I guess you’ll have to use something like file_get_contents() to get the page content, then you’d have to either attempt to walk the page content by parsing it as XML, or extract the content of a specific tag using regexes or strpos.

This is assuming they don’t offer any sort of web service.