JAVASCRIPT vs PHP, manipulating XML value(text of an element) by URL(post)

zh00r-zh00r

New Member
which is better and more easy way to use,i have trying to save and replace(if needed) some data in XML via php or js, like players score in a game (from an AS3 App).\[code\]<?xml version="1.0" encoding="utf-8"?><scores> <game id="1"> <slot top="1"> <name>joe</name> <score>125688</score> </slot> <slot top="2"> <name>john</name> <score>10943</score> </slot> <slot top="3"> <name>yuri</name> <score>9235</score> </slot> </game></scores>\[/code\]what is your advice to changing , for example Yuri's score just by calling a url with posting some data from AS3 app.Thanks.
 
Back
Top