adding data to xml file

asish

Member
Joined
Jan 17, 2008
Messages
20
Programming Experience
Beginner
i hve an xml file which looks like this:
HTML:
<toc>
  <list>
    <header>Error Detecting Codes</header>
    <description>Lesson Number: </description>
    <url>Error Detecting Codes.xml</url>
    <id>1</id>
  </list>
</toc>

& i wanted load the xml file and add data to it to make it look like this:

HTML:
<toc>
  <list>
    <header>Error Detecting Codes</header>
    <description>Lesson Number: </description>
    <url>Error Detecting Codes.xml</url>
    <id>1</id>
  </list>
  <list>
    <header>other codes</header>
    <description>Lesson type: </description>
    <url>other codes.xml</url>
    <id>2</id>
  </list>
</toc>
i was wandering how this could be done? ..... thank u
 
Last edited by a moderator:
thank u ... 4 the link but what i want is to add the data to the xml file & not to overwrite it....is this possible?
 
Back
Top