Hi there,
does anybody know how I can modify XML using PHP ?
I can add node and child entities, but can't delete/modify
this is what I'm using to add nodes:
$doc = xmldoc("$xml") or die("Does this resume exist?");
$root = $doc->root();
$newsection = make_node($root,"SECTION","");
$newsection->set_attribute("name", "objective");
make_node($newsection, "OBJECTIVE", "$objective");
$xmltoUpdate = $doc->dumpmem();
any help is GREEAAAAAATLYYYY appreciated !!!
PS: I do not have a DOMXML support.