I found similar problem on Cakephp Xml to Array to Database, but has not been fully resolved.
I have xml file with structure like this:
<sec tab="mmm" type="sss">
<offer>
<id>MS-26</id>
<param name="city" type="text">London</param>
<param name="price" type="text">1000</param>
<param name="photo1" type="text">filename26_1.jpg</param>
<param name="photo2" type="text">filename26_2.jpg</param>
<param name="photo3" type="text">filename26_3.jpg</param>
</offer>
<offer>
<id>MS-27</id>
<param name="city" type="text">Liverpoll</param>
<param name="price" type="text">1200</param>
<param name="photo1" type="text">filename27_1.jpg</param>
<param name="photo2" type="text">filename27_2.jpg</param>
<param name="photo3" type="text">filename27_3.jpg</param>
</offer>
</sec>
<sec tab="xxx" type="sss">
<offer>
<id>XS-11</id>
<param name="city" type="text">London</param>
<param name="price" type="text">50</param>
<param name="photo1" type="text">filename11_1.jpg</param>
<param name="photo2" type="text">filename11_2.jpg</param>
<param name="photo3" type="text">filename11_3.jpg</param>
</offer>
</sec>
I also have database structure like TABLE OFFERS with
id,
offer_id => id from xml file
offer-tab, => value of <section tab>
offer-type, => value of <section type>
city, => value of <param name="city">
price, => value of <param name="price">
photo1,
photo2,
...
Please help to write the model (if needed) and a controller that will do the import of offers - from xml file to database.