Hi
I think with an illustrated example would be more explicit.
Well i have an xml file
<articles>
<article>
<name>tutu</name>
<id>0</id>
</article>
<article>
<name>titi</name>
<id>1</id>
</article>
</articles>
My aim is to import these data in an database MySql
example :
My name database is : book
book : article -> name : titi
id : 1
Have you got an way to process to import these data ?
hanimichi