Hey everyone,
I’m creating an in-house application in flash for my company. I’m pulling a ton of info from a single XML file located on our server. Ten interns will be using the application on their laptops (Air 2.0). Having the data load and populate the application is not a problem. I would like them (in the application) to be able to edit an existing node value (loaded from the XML) and save it (back to the XML file) so that the XML file updates with the new value and the other 9 interns would see the change on their application.
I figure I’ll need some kind of php set up, but everything I’ve read so far deals with creating new nodes.** I need to edit and update existing node values from an existing loaded file.**
Here’s a very simple example of the XML:
<INVENTORY>
<CODE>x1234561</CODE>
<NAME>Code1</NAME>
<DESCRIPTION>This is a description of item number 1!</DESCRIPTION>
<POINTS>100</POINTS>
<CODE>x1234562</CODE>
<NAME>Code2</NAME>
<DESCRIPTION>This is a description of item number 2!</DESCRIPTION>
<POINTS>200</POINTS>
<CODE>x1234563</CODE>
<NAME>Code3</NAME>
<DESCRIPTION>This is a description of item number 3!</DESCRIPTION>
<POINTS>300</POINTS>
</INVENTORY>
[COLOR=#b72612]
[/COLOR]Thanks in advance for any guidance someone and give me. I appreciate it!
[COLOR=#b72612]
[/COLOR]