Carolyn Krall
Carolyn Krall

Reputation: 11

How to create HTML comment box without database

I need a simple comment box, made without a database (so HTMLcommentbox.com is not for me). You can only use it one time per page. We only have one page but may have more then one person who needs their own comments. The URL of our TLC is http://www.copd-supporttlc.byethost7.com/. I am using Elvis as a placeholder and practice until I have everything set up.

There will be more names below Elvis and I would like to have a comment box for each name and more folks would comment one that name and I would like to have it collapse when not in use. It would open when you clicked on the name.

Upvotes: 0

Views: 1184

Answers (1)

Hurricane Development
Hurricane Development

Reputation: 2464

You cannot create some type of comment system without storing data. And one way or another, storing data is considered a database. Whether you use something like SQL lite for local storage, or a large server database like MySQL. At some point a database will be involved.

So what you are attempting is impossible.

Upvotes: 1

Related Questions