gpt4 book ai didi

php - 我的评论系统不会将内容添加到我的数据库中

转载 作者:行者123 更新时间:2023-11-30 00:41:07 24 4
gpt4 key购买 nike

我正在为我网站上的每个帖子创建一个评论系统。我希望这个系统能够识别登录的用户,因此他们所要做的就是编写评论,代码将自动添加他们的 user_id 并将评论与帖子关联起来,同时添加评论。

在我的评论表中我有:

id - int 自动递增

idea_id - int(这是帖子 ID)

user_id - 整数

评论 - 中文本

<小时/>

我有一个基本的网络表单:

<?php

include 'comment.php';

?>
<form method = 'Post'>

Comment: <br/>
<input type = 'text' name = 'comment' id = 'comment' autocomplete= 'off' />
<input type = 'submit' name = 'submit' value = 'Comment' />
</form>
<小时/>

那么comment.php是:

<?php
if(isset($_POST['submit'])) {

$comment = $_POST['comment'];
$user_id = $_SESSION['user_id'];



if(empty($comment)) {
$message = "You Haven't Written Anything";
} else {
if(isset($_GET['user_id'])) {
$_SESSION['user_id'] = $_GET['user_id'];
}
mysql_query("INSERT INTO comments VALUES('', '".$user_id."', '".$comment."') ");
$message = "OK! Thanks for leaving your comment!";
}

echo "<div class = 'box'>$message</div>";
}
?>

现在我只添加了 user_id 和评论,因为我正在尝试解决问题。我也不知道如何获取代码来识别帖子。非常感谢任何可以帮助我的人。

最佳答案

试试这个

 <form method ='Post' Action='comment.php' name='comment_form' >

Comment: <br/>
<input type ='text' name='comment' value='' id='comment' autocomplete= 'off' />
<input type ='submit' name ='submit' value = 'Comment' />
</form>

在此代码中,您忘记了 value ='' 和 action='your file'

并使用这个 php 代码

  <?php
session_start() ;
if(isset($_POST['submit'])) {

$comment = mysql_real_escape_string($_POST['comment']);
$user_id = $_SESSION['user_id'];



if(empty($comment)) {
echo "You Haven't Written Anything";

} else {
mysql_query("INSERT INTO comments ( idea_id,user_id,comment) VALUES('', '".$user_id."', '".$comment."') ") or die(mysql_error());
echo "OK! Thanks for leaving your comment!";
if(isset($_GET['user_id'])) {
$_SESSION['user_id'] = $_GET['user_id']; /// this is wrong here , user can enter manually id via link and you will let him be in session ???
}


}

//echo "<div class = 'box'>$message</div>";
}
?>

关于php - 我的评论系统不会将内容添加到我的数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21763675/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com