I am making an web audio player, with it is linked to an xml file, so for each track the xml file will have the following items:
<track>
<singer></singer>
<title></title>
<url></url>
<artwork></artwork>
<downloadURL></downloadURL>
</track>
There will be many different tracks with all these items for each one of them. How can I store them in my application? I was thinking to have a loop function to create one array for each track so if there are 20 tracks, there will be 20 arrays. I am looking for the usual solution for this.
Any idea?