0

How to do comment box?

i like to do comment box and if its comment the comment goes on the page.

11th Jun 2017, 6:22 PM
Roland Doctor
Roland Doctor - avatar
1 ответ
+ 3
I assume you mean like an input box? You use the textarea tag within a form. <form action="comments.php" id="comment-form"> <textarea rows="5" cols="100"></textarea> </form> Test it out in the code playground. However, to actually use that information and post it on a page requires knowledge of PHP and also preferably JavaScript (that is, in a typical web page - many other languages can be used, such as Python). If you're still learning HTML, I suggest you gain a better knowledge of front-end development (HTML/CSS/JS) before moving on the backend.
11th Jun 2017, 10:07 PM
Taija
Taija - avatar