skip to Main Content

Sorting an XML file using php

There's an xml file with multiple entries and i'm trying to sort it based on two children. I'm trying to sort it first by a:DESIGN and then by a:COLOR. i've made various attempts but it wont sort no matter what…

VIEW QUESTION

XMLReader php xml insert to mysql duplicates

I have an XML as: <?xml version="1.0" encoding="UTF-8"?> <products currency="EUR"> <product id="457654754" vat="13.0"> <price gross="0.09" net="0.07"/> <sizes> <size id="0" name="gfdgfdgfdg" panel_name="dfgfdgfdgfd" code_producer="fgdfgfdg" iaiext:code_external="457547547547" code="354643643643" weight="4" iaiext:weight_net="10" > <stock id="1" quantity="333"/> </size> </sizes> </product> </products> when I parse it as: <?php…

VIEW QUESTION
Back To Top
Search