Saving to a file

i was wonder how (in an applet game) you could save the score that a user recieves to a file that can be read by an internet language (PHP).e.g. for a high scores list.thanks
[202 byte] By [Jshrubba] at [2007-9-28 6:49:03]
# 1
The concept of Applets will not allow you to write on the users machine. All information must be saved at the host server.
lsttermaa at 2007-7-9 18:00:17 > top of Java-index,Other Topics,Java Game Development...
# 2
You could use javascript to take the score from the applet and stick it into an input hiden field and then use php to save it to a file. Hey that could work...
javatypoa at 2007-7-9 18:00:17 > top of Java-index,Other Topics,Java Game Development...
# 3
I know that some sites use cookies to save data, but those of course can be deleted at any time by the user. I've also people use PHP to write the score into a database, and the next time the page comes up the PHP somehow gives the applet the data (like through a param tag)
Woogleya at 2007-7-9 18:00:17 > top of Java-index,Other Topics,Java Game Development...
# 4
How do you save the text (high score) in the applet to the server?
Jshrubba at 2007-7-9 18:00:17 > top of Java-index,Other Topics,Java Game Development...