درسنا اليوم عن طريقة سحب rss الى موقعك راح نستخدم SimpleXMLElement
$xml = file_get_contents('http://feeds.movieweb.com/movieweb_movienews?format=xml');
$movies = new SimpleXMLElement($xml);
foreach($movies->channel->item as $offer) {
echo $offer->title .'
';
}