Here is the xml doc
Code: Select all
<?xml version="1.0"?>
<Start>
<item name="Test1">
<category>Game</category>
<serial>432-543-345</serial>
</item>
<item name="Test2">
<category>Other</category>
<serial>432-543-654</serial>
</item>
</Start>so I want when somebody put Test3 in the name, Other in the category and 1234 in the serial, the PHP would write to the XML doc and the XMl doc would turn into this
Code: Select all
<?xml version="1.0"?>
<Start>
<item name="Test1">
<category>Game</category>
<serial>432-543-345</serial>
</item>
<item name="Test2">
<category>Other</category>
<serial>432-543-654</serial>
</item>
<item name="Test3">
<category>Other</category>
<serial>1234</serial>
</item>
</Start>I appreciate any help!
thanks,
Joe