I've got a little problem with an XML file. I need to take the content of the tags (in the XML file) and save them in a MySql data base , using PHP .
My supervisor asked me to use DOM, but everything I do isn't workin'.
My XML file looks like this :
<?xml version="1.0" encoding="windows-1252"?>
<BIENS>
<BIEN>
<CODE_SOCIETE>0024</CODE_SOCIETE>
<CODE_SITE>02</CODE_SITE>
<TYPE_OFFRE>1</TYPE_OFFRE>
<NO_ASP>3637017</NO_ASP>
<NO_DOSSIER>00059</NO_DOSSIER>
<NO_MANDAT>6523</NO_MANDAT>
</BIEN>
<BIEN>
....
</BIEN>
</BIENS>
So I would like Some help please. It's kind of urgent :s .