XML Structure - Help Please

wxdqz

New Member
Hello Everyone.

I'm currently trying to seek some help to create my first XML document. I have a DTD file which I am going to try and use for baseline. I'm stumbling across a few problems during the creation of the XML file however and don't really know where to start. Any help with the creation of the XML file would be greatly appreciated.



<!ELEMENT championship (event)+ >
<!ELEMENT event (summary, result?) >
<!ATTLIST event gender ( men | women ) #REQUIRED >
<!ELEMENT summary (location, finaltime, description ) >
<!ATTLIST summary name (#PCDATA) #REQUIRED >
<!ELEMENT result (position, competitor, country, time) >
<!ELEMENT location (#PCDATA) >
<!ELEMENT finaltime (#PCDATA) >
<!ELEMENT description (#PCDATA) >
<!ELEMENT position (gold | silver | bronze) >
<!ELEMENT competitor (#PCDATA) >
<!ELEMENT country (#PCDATA) >
<!ELEMENT time (#PCDATA) >
 
Back
Top