Hello,

I am trying to use PHP to read an XML file that lists songs and artist info that is current playing. I am at a loss on what the best way is. The file is called songs.xml and the output generated is this:

<audio_export>
&#8722;
<audio ID="id_1446474606_30071389">
<type>Song</type>
<status>Playing</status>
<title>All Day And All Of The Night</title>
<artist>Kinks</artist>
</audio>
&#8722;
<audio ID="id_1446630856_30071389">
<type>Song</type>
<status>None</status>
<title>Fox On The Run</title>
<artist>Sweet</artist>
</audio>
</audio_export>

What is simple code that would display this in a nice format?

Thank you for the help....

    Write a Reply...