I have xml files of this format
and I want through PHP to be able to:
- modify a certain categories data
- add/delete categories to/from a certain position in the xml
- reorganise the order of the xml
here I have found examples of using SimpleXML to search/update a certain categorie but nothing related to the other two issues in my list above, any advice?
Code:
<category> <name></name> <title></title> <href></href> <descr></descr> </category> <category> <name></name> <title></title> <href></href> <descr></descr> </category> ......etc
- modify a certain categories data
- add/delete categories to/from a certain position in the xml
- reorganise the order of the xml
here I have found examples of using SimpleXML to search/update a certain categorie but nothing related to the other two issues in my list above, any advice?
Comment