<?php
$feed = "http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml";
// Fetch the XML
//
$xml = simplexml_load_file( $feed );
// Process the currencies
//
foreach ( $xml->Cube->Cube->Cube as $anEntry ) {
// The values for each entry are stored in the attributes
// so pull these to an array
//
$attrib = $anEntry->attributes();
// Convert to variables for easier handling
//
$currencyName = $attrib['currency'];
$currencyRate = $attrib['rate'];
// output to screen
//
echo "$currencyName - $currencyRate<br/>";
}
|