Merhaba arkadaşlar, yorum kaydetmek istiyorum ajax olarak bir sayfada birden fazla yorum alanı var şu şekilde yapmak istiyorum.


yorum alanı şu şekilde;
" placeholder="Yorum yaz" />

yorum alanı için yazdığım js:
$(function() {
$(".tcomment").click(function(){
var element = $(this);
var comment = element.attr("value");
var comment_id = element.attr("id");
var info = 'id=' + comment_id + 'comment=' + comment_id;

$.ajax({
type: "POST",
url: "comment.php",
data: info,
success: function(){

}
});

});
});



comment php şu şekilde:
$iid = "5";
$postid = "5";
$kid = $_SESSION['id'];
$date=date("d-m-Y.H:i:s");
$sth = $db -> prepare ("INSERT INTO comment (kid, postid, comment, date) VALUES (?,?,?,?)");
$sth -> execute(array($kid,$postid,$comment,$date));