comment.php bu şekilde:
$postid = $_POST['CommentID'];
$kid = $_SESSION['id'];
$comment=$_POST['Comment'];
$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));

?>

input bölümü de şu şekildeydi:
" placeholder="" />