Convert DTD to XML!Urgent!

techboy

Adept
Hi

I want to know how to convert these 2 sentences into XML(they are in DTD).
Actually I have got a project and the work is urgent.
<!ELEMENT dp_list (drink_place*)>

<!ATTLIST drink_place
place_ID ID #REQUIRED>
 
no xml schema is an advancement of DTD. they both are used to give structure to xml documents.

<!ELEMENT name (#PCDATA)>

i dont think you can convert it to xml. you can include it in your xml file as a tag :

<name> .... </name>
 
Back
Top