lets say i have a very basic XML file
<products>
<item>
<name>Test 1</name>
</item>
<item>
<name>Test 2</name>
</item>
</products>
what i would like todo:
1) parse the products tree and output a drop down on each <item>
--I can do that myself easily--
2) when an item is chosen you can click edit and it will bring up each of the values within the item into a form that u can edit
-- knowing the structure im pretty sure i can handle this too--
3) when you are done editting you submit and it updates the XML <item>
--this i will definitely need help on this or a good example to get a start with--
4) at the same spot where you get a drop down of items I'd like to offer the ability to add a item to the XML... i've seen the addChildren and addAttribute but the help file is rather vague to the specifics... again, a good example here would be great
any direction, links, code snippets would be greatly appreciated... thanks alot