I've been looking around but still can't find a workable answer to editing and deleting xml with php without the use of simpleXML (how I wish i could use it). I was hoping someone could break it down simply for me, as my brain doesn't cope with this stuff! The xml file I have to work with looks something like this:
<allentries>
<entry>
<entryid>1</entryid>
<title>This is the title</title>
<date>2010</date>
<author>Some Guy</author>
</entry>
<entry>
<entryid>2</entryid>
<title>This is Another title</title>
<date>2011</date>
<author>Some Other Guy</author>
</entry>
<entry>
<entryid>3</entryid>
<title>This is the other title</title>
<date>2012</date>
<author>And Another Guy</author>
</entry>
</allentries>
I need to be able to do two things with PHP - Firstly I need to be able to accept values posted from a form, pick the correct entry based on the entryid number and modify each element within that entry with the new data. For eg. if entryid = 2, skip to the second entry and replace the text within title, date and author with the new data.
The second thing I need to be able to do (with a different function obviously) is pick the entry based on the entryid number and delete the whole entry, tag, data, children and all.
It sounds like it shouldn't be too hard, but every example I've used so far fails to do anything. Can anybody suggest anything or any other tutorials somewhere that may help me?
Thanks muchly for your time!
allentries. – Gordon♦ Nov 23 '10 at 11:13