OMG! I've been looking everywhere for help on making a php script that will create a xml file that looks something like this:
Code: Select all
<artists>
<artist value="Jack Johnson">
<album value="Greatest Hits">
<song value="Banana Pancakes">
<location>location/to.file</location>
</song>
<song value="song 2">
<location>location/to.file</location>
</song>
</album>
<album value="other album">
<song value="song1">
<location>location/to.file</location>
</song>
<song value="song 2">
<location>location/to.file</location>
</song>
</album>
</artist>
<artist value="Metallica">
...
</artist>
</artists>
i cant do this by hand cuz i got about 15 or so Gigs of songs.
i need this to use in a web music player i'm creating on my server for me and my brother to use.
and this is my first time going to a forum for help, i love doing stuff on my own, but this i can't seem to do.
any help would be Greatly Appreciated...