I’m having trouble using a non-standard XML file with simplexml_load_file(). Here’s my code:
<?php
$file = 'http://www.gostanford.com/data/xml/events/m-baskbl/2010/index.xml';
$xml = simplexml_load_file($file);
echo 'Displaying user names of XML file...<br />';
foreach($xml as $event_date){
echo 'Home: '.$event_date->hn.'<br />';
}
?>
As you’ll see, nothing is being output from the XML file, only the echo’d “Home:”
Any help is greatly appreciated.
This is the XML data, nothing non-standard about it:
The attribute you are looking for is one element level
<event>below.And to access attributes use the array syntax instead: