Is there any way to insert some data into XML file??
For example, if there is a XML code like this
<charlist>
<list>
<title>gb</title>
<chr>Goodbye</chr>
`</list>
<list>
<title>ttyl</title>
<chr>talk to you later</chr>
</list>
</charlist>
How can i insert more data like "" into XML file.
I used "append" to add more data into a XML file, but it did not work.
Do I need to use Ajax or the others???
Add a comment
|