rss feed with images using php
I am trying to pull an rss feed through for the following rss feed http://menmedia.co.uk/manchestereveningnews/news/rss.xml I can pull this through no problem using this method: <? $xml = file_get_contents('http://menmedia.co.uk/manchestereveningnews/news/rss.xml'); // Use cURL to get the RSS feed into a PHP string variable. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://menmedia.co.uk/manchestereveningnews/news/rss.xml'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $xml = curl_exec($ch); curl_close($ch); // Include the handy XML data