XML handling multiple objects
Alright i have this piece of XML
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/css" href="page2.css"?>
<!DOCTYPE update [
<!ELEMENT update (author,date,mail,story)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT date (#PCDATA)>
<!ELEMENT mail (#PCDATA)>
<!ELEMENT story (#PCDATA)>
]>
<update>
<author>Nick Fazzolari</author>
<date>2/2/04</date>
<mail>stiches85@hotmail.com</mail>
<story>Testing XML news post system... Testing, it seems to be working properly! I can use this for news and brainstorms. It's simply great. I wanna do it, in the ear.</story>
</update>
what do I need to do in order to have multiple update tags on the page. I keep getting a error :/
___________________
