Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need Help with XML project

Status
Not open for further replies.

seanyb7d

Programmer
Oct 16, 2005
1
US
Hey, im an XML noob and i need help. I need someone to create and XML and XSL. Basically it just have to be data for my favorite CD's in my collection. Including these pictures!

Unearth

The Showdown

Avenged Sevenfold

As I Lay Dying

Sevendust

Silent Drive

If u could help me out that would be fantastic!
 
You probably want to have a structure like this:
Code:
<collection>
  <cd>
    <artist/>
    <title/>
    <picture/>
    <tracks>
      <track>
        <name/>
        <time/>
      </track>
      .........
    </tracks>
  </cd>
  .........
</collection>

Jon

"I don't regret this, but I both rue and lament it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top