How do I make a comment system in HTML?

How do I create a comment system in HTML that allows users to post comments on my page by just typing in a name and the message, Id be really thank full if someone could help.

Comments

  • You can't do it with just HTML. You need a server side language (like PHP, or Microsoft's ASP framework) with a database (PHP with MySQL, or ASP with LINQ) to make a comments system.

  • What type of server do you have? If you have a AMP (Apache, MySQL and PHP)-enabled browser, I can point you to a good tutorial at http://www.sitepoint.com/books/phpmysql4/phpmysql4...

    But HTML by itself can't do that. You need a database to store the comments (like MySQL) and a serving language to serve the page and the information from the database together (like PHP).

Sign In or Register to comment.