I've currently got an XML file that has multiple instances of items. I need to be able to read, update, and create new items from/to this XML file.
I've managed to get reading working well using simplexml:
$simplerXML = simplexml_load_file('myxml.xml');
$test = $simplerXML[0]->senderName;
echo $test;
However, I'm having trouble modifying values. I've looked through the simplexml documentation but I haven't found anything. I've tried basic stuff like
$simplerXML[0]->senderName = "demo";
but unsurprisingly that didn't work.
I also need to be able to add new items to this xml file. The only examples I've been able to find create an entirely new file, but I need to be able to append to it (ie add to the file).
Any help or links to further documentation would be appreciated. Thanks.