Well the namespace files finally started working.
PHP Code:
<?php
echo '<pre>';
$xml = simplexml_load_file("$PUTthatHUGExmlFILEurlHERE");
foreach($xml->xpath('//xls:RouteInstruction/*') as $v)
{
print (isset($v[0][0]->attributes()->value)) ? $v[0][0]->attributes()->value . ' Kilometers <br/>' : $v[0][0] . '<br/>';
}
echo '</pre>';
?>
See if you like it...