Hi, I have many XML files that have the next format:
<songs>
<song path="LINK.MP3" bild="img/s.jpg" artist="NAME OF THE ARTIST" title="SONG TITLE"/>
</songs>
The problem is that I don't know how to "extratc" that information to use it into my project.
I need to get them all (but the most important is the "song path".
PD: This will be easier is the structure of the XML was something like:
<song>
<path>LINK.MP3</path>
<artist>ARTIST</artist>
<title>TITLE</title>
</song>
Bye and thanks

Reply With Quote

