Re: modify xml file php script
- From: Wolfgang Forstmeier <wolfgang.forstmeier@xxxxxx>
- Date: Wed, 31 Aug 2005 09:18:20 +0200
Hi,
DOM should be your friend, for Documentation read this:
http://de2.php.net/manual/en/ref.dom.php
Have fun ..
Wolfgang
jp.delatorre@xxxxxxxxx wrote:
how to create script that modify xml file
sample xml file:
<root> <parent name="a" id="1"> <child name="a.a" id="1.1" /> <child name="a.b" id="1.2" /> <child name="a.c" id="1.3" /> </parent> <parent name="b" id="2"> <child name="b.a" id="2.1" /> </parent> <parent name="c" id="3"> <child name="c.a" id="3.1" /> <child name="c.b" id="3.2" /> </parent> </root>
php script should be able to modify the xml file. it should be able to insert a parent element say between parent A and parent B. the id of the new parent element should be parent B with its child respectively. the parent elements below the new element should adjust the ids. in the example above, parent B id should be 3 and its child id should be 3.1. same goes to parent C and its childs. result would be: <root> <parent name="a" id="1"> <child name="a.a" id="1.1" /> <child name="a.b" id="1.2" /> <child name="a.c" id="1.3" /> </parent> <parent name="newparent" id="2"> <child name="newparent.a" id="2.1" /> <child name="newparent.b" id="2.2" /> </parent> <parent name="b" id="3"> <child name="b.a" id="3.1" /> </parent> <parent name="c" id="4"> <child name="c.a" id="4.1" /> <child name="c.b" id="4.2" /> </parent> </root>
any comments on this...
.
- Follow-Ups:
- Re: modify xml file php script
- From: dem0o8
- Re: modify xml file php script
- References:
- modify xml file php script
- From: jp . delatorre
- modify xml file php script
- Prev by Date: Re: Australians Only?
- Next by Date: Re: modify xml file php script
- Previous by thread: modify xml file php script
- Next by thread: Re: modify xml file php script
- Index(es):
Relevant Pages
|