如何在 html+php+mysql 留言簿的评论框下方放置评论?

How to Place comments right under the comment box in a guestbook made in html+php+mysql?

我有一个留言簿应用程序,用户可以在其中输入他的姓名、电子邮件和消息,然后将其存储在数据库中,之后我通过 php 文件打开它以查看评论。

我的问题是:如何将这些评论(当用户单击提交按钮时)按 post hour/date 降序直接添加到评论框下方的 html 页面? (我不需要显示date/hour,我只希望评论连续放置)

我使用 guestbook.php 从数据库中获取数据并在用户单击它时显示它(它是我的 index.html 页面上名为 Guestbook 的按钮)。这是 Guestbook.php:

的代码
<?php
$host="localhost"; //Add your SQL Server host here
$user="db1"; //SQL Username
$pass="test123"; //SQL Password
$dbname="db1"; //SQL Database Name
$con=mysqli_connect($host,$user,$pass,$dbname);
if (mysqli_connect_errno($con))
{
    echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT name,message FROM db1");
while($row = mysqli_fetch_array($result))
{ ?>
<h3><?php echo $row['name']; ?></h3>
<p><?php echo $row['message']; ?></p>
<?php } 
    mysqli_close($con);
?>

我会向您展示我的 index.html 代码(正文)部分,其中包含姓名、电子邮件、消息框、安全复选框和页脚:

<ul id="mainMenu">
    <li><a href="index.html">Home</a></li>
    <li><a href="guestbook.php" id="active">Guestbook</a></li>
</ul>
<hr/>
</div>
<div id="content">

<h2>Sign to the Guest Book </h2>
    <form name="guest" method="post" action="addcomment.php" onsubmit="return Validate();">
        <span>Name:</span>    <input type="text" name="name"/><br />
        <span>Email:</span> <input type="text" name="email"/><br />
        <p>Message:</p> <textarea name="message" rows="10" cols="50"> </textarea> <br />
        <p>5+5 = ? (in letters):</p> <input type="text" name="res"> </textarea> <br />
        <input type="submit" value="Sign this in the Book" />
  </form>
</div>
</div>
<div id="footer">
<hr/>
<p>Thank you for the visit! </p>
</div>
</body>
</html>

所以,我想不知何故可以用一个包含下面评论的部分替换页脚......但是我不知道如何从数据库中获取这些评论并使用 html 将它们放在那里代码

提前致谢!

使用.prepend()函数:

var information = ""; // The information from the form.
$("#footer").prepend(information);

如果我没猜错,你想做的是:

  1. 将您的 index.html 重命名为 index.php
  2. <?php include ("guestbook.php"); ?> 添加到您希望条目出现的文件中。