I've succesfully loaded and parsed this XML file, using XMLParser and AS2:
<Resources>
<item author="Julian" date="28/12/2010" time="01:18" id="876" like="8" dislike="5">
<Text>Sample paragraph</Text>
</item>
<item author="Albert" date="28/12/2010" time="01:18" id="876" like="8" dislike="5">
<Text>Sample paragraph 2</Text>
</item>
<item ...
</Resource>
Now, what I need, is to increase and store the "like" and "dislike" values with the click of a button, but I don't know how to modify and store them in the existing nodes (eg., without adding new ones).
Do I need to use PHP, or can AS2 handle it by itself?
Any help on the subject? Thankyou!