the following code I get from this web site can not work with Apache1.3.22 and PHP 4.1.1 on window98 platform,
Anybody know how to delete a node and same the modification to disk file?
many many thanks,
Jerry
<?php
$doc = xmldoc("<?xml version=\"1.0\" encoding=\"ISO-8859-1\" standalone=\"no\"?><MYWSARTICLE>étxxx</MYWSARTICLE>");
$root2=$doc->root();
$child0=$root2->new_child("HEAD", utf8_encode("édxxx"));
$child=$root2->new_child("TOTO", utf8_encode("toto "));
$chaine2 = domxml_dumpmem ($doc);
// deleting a node
domxml_unlink_node($child);
$chaine3= domxml_dumpmem ($doc);
?>
<body><form>
<br><textarea cols="50" rows="10"><?php echo $chaine2?></textarea>
<br><textarea cols="50" rows="10"><?php echo $chaine3?></textarea>
</form></body>