Writing to a file

Hi, I want to write to a file in an applet that everyone will access.

I want to be able to edit and look up values in this file.

How would I go about doing this? Is it possible to compile a .txt as part of an applet? Meaning if one person adds a word, and another person visits the applet they will be able to look up that word.

All help is appreciated, ty.

To do this you’ll need to store the final at the server end. There are many ornate way you could do this.

Myself, I’d go with a PHP script which you submit the adds to and use a standard URL to access the file.

Kev