Asked By
Trevor Jhon
40 points
N/A
Posted on - 10/15/2012
Hello experts,
How to create instant blog comments list? Using html and PHP programming language in a small specific website that I am creating as of the moment. Can you give me some tips on how to make instant blog comments list? Like some other social networking websites.
Thank you.
How to create instant blog comments list?
Hi, Place this code in to your blog. It will create a dialog box, using this box you can create a list of comments. You can also customize your welcome text of this box.
<form method="post" action="">
<textarea name="comments" cols="25" rows="5">
Enter your comments here…
</textarea><br>
<input type="submit" value="Submit" />
</form>
How to create instant blog comments list?
Â
Â
To create instant blog comments list type the following code in your html blog.
<div id="respond">
 <h3>Leave a Comment</h3>
 <form action="post_comment.php" method="post" id="comment form">
 <label for="comment author" class="required"> Your name</label>
 <input type="text" name="comment_author" id="comment_author" value="" tabindex="1" required="required">
 <label for="email" class="required">Your email;</label>
 <input type="email" name="email" id="email" value="" tabindex="2" required="required">Â
<label for="comment" class="required">Your message</label>
<textarea name="comment" id="comment" rows="10" tabindex="4"required="required">
</textarea> <– comment here
<input type="hidden" name="comment_post_ID" value="1" id="comment_post_ID" />
<input name="submit" type="submit" value="Submit comment" />
 </form>Â
</div>
Â