I am currently developing a website that will store a long list of names (without any additional data) on the server , and then output to the client browser upon request.
To save these names, I obviously would need a data storage method, and I'm just wondering, since the whole site is encoded in javascript / jquery, if there is a safe way to store these names and then output them using JavaScript?
I want to avoid the PHP / MySQL route for server load, so I thought it was easiest to save the names in a text file on the server and then use AJAX to read the names and output, but I donโt know how safe it is for unauthorized changes. Please give me your thoughts on this method.
Another way would be to use the TaffyDB library, please also think about it.
I still donโt like the unauthorized viewing of data, since they can still see it all on the site, just unauthorized changes.
Thanks,
DLiKS
javascript jquery database
DLiKS
source share