HI,
I would like to make a XML file from a list.
my XML file should be like that:
<?version = 1.0 encoding = "UTF_8"?>
<liste>
<depot date= "date">
<article>NomArticle</article>
<article>NomArticle</article>
.....
</depot>
</liste>
The program make the list from 1 the multiple line of article for a specific date.
Each day it makes a new list that have to be add to the old one.
I've seen how to parse the XMlFile with XmlSax to retrieve the file.
I know that I can made a XML file from scratch but I would like to know how to make it with XML builder (add the new lines to the old one).
with a for next loop ? how?
Thanks in advance
Luc
I would like to make a XML file from a list.
my XML file should be like that:
<?version = 1.0 encoding = "UTF_8"?>
<liste>
<depot date= "date">
<article>NomArticle</article>
<article>NomArticle</article>
.....
</depot>
</liste>
The program make the list from 1 the multiple line of article for a specific date.
Each day it makes a new list that have to be add to the old one.
I've seen how to parse the XMlFile with XmlSax to retrieve the file.
I know that I can made a XML file from scratch but I would like to know how to make it with XML builder (add the new lines to the old one).
with a for next loop ? how?
Thanks in advance
Luc