Displaying XML in PHP

I’ve found lots of tutorials about this topic, but can’t find a solution to my problem. I’ve created a flash app that uses this xml data, and I’d really like to be able to continue using it as it is currently formatted. None of the tutorials I’ve encountered work for this situation, since the data is in the parameters and not between tags. Is there any way to display this xml (name, location, num) in php without changing the xml file? Any help would be greatly appreciated.


<?xml version="1.0" encoding="iso-8859-1"?>
<playlist>
 <song
  name="Leader of the Band"
  location="side_audio/leader-of-the-band.mp3"
  num="0"
 />
 <song
  name="Blackbird"
  location="side_audio/blackbird.mp3"
  num="1"
 />
 <song
  name="Time In A Bottle"
  location="side_audio/time-in-a-bottle.mp3"
  num="2"
 />
 </playlist>

bump.