All I need to do is get an object, say <description>, from this XML URL: http://themoneyconverter.com/GBP/rss.xml to echo out on the page.
The XML is a list of all currency rates against the GBP.
Any help would be really great.
I have been trying things along the lines of:
Code: Select all
$from = "GBP";
$url = "http://themoneyconverter.com/$from/rss.xml";
$xml = simplexml_load_file($url);
$namespaces = $xml->getDocNamespaces(TRUE);
var_dump($namespaces);