How to create instant blog comments list?

Asked By 40 points N/A Posted on -
qa-featured

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.

SHARE
Best Answer by gobindadaimary
Answered By 5 points N/A #187046

How to create instant blog comments list?

qa-featured

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>

Best Answer
Best Answer
Answered By 0 points N/A #187047

How to create instant blog comments list?

qa-featured

 

 

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>

 

Related Questions