繁体   English   中英

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

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

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

我的问题是:如何按发布时间/日期降序将这些评论(当用户单击提交按钮时)直接添加到评论框下的 html 页面? (我不需要显示日期/小时,我只想连续放置评论)

我使用guestbook.php 从db 获取数据并在用户单击它时显示它(它是我的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>

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

提前致谢!

使用.prepend()函数:

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

如果我猜对了,你想做的是:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM