|
Well, the *RIGHT* answer is to stop using text files! That might have been an okay answer when you had a handful of members, but once you got to even 100 or so it was past time to start using a database.
And that means writing server-side code: PHP or ASP or JSP.
You *can* do this with text files on the server and using JavaScript, but it's a really bad solution. It's also very very insecure, because anybody with a JavaScript debugger (which means anyone with a browser!) can intercept your data and read your ENTIRE membership list, with addresses. How do you think your members would feel about you exposing their name and address to the ENTIRE WORLD?
If I found you were doing this, I might be tempted to sue you for breach of privacy.
With a server-side solution, you still might show member's addresses to other members, but at least you'd be able to ensure that *ONLY* members can see the data. You have no such protection in an all HTML/JavaScript system.
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
|