I am Parasing XML currently using:
$data = simplexml_load_string($xmlFile);
foreach($data->item as $key => $current){
echo($current);
}
However I'm wondering, if a hit an element that looks like this:
<thumbnail url="http://foo.bar" height="225" width="300"/>
How do i pull the inner parts of this? (height, url, width)
Thanks!