Is there a way to create a comment box without PHP & MySQL?
My server doesn't support PHP & MySQL and I need to find a way to do a comment box system without them.
I found that this can be done with XML but I can't use that too.
Another way I found is to parse the data from a CSV, but I wonder if I can update the CSV file too, when someone writes a new comment. Is that possible in JavaScript or jQuery?
I did some research regarding CSV files but I couldn't find anything relevant. Ideally, but not sure if possible, I would write the comments and their details on an online CSV file and then parse them to my page.
What are possibilities are to create the comment box without PHP & MySQL?
Thank you!