今天我們來學習一下制作一個簡單的留言板的 HTML 源代碼,帶有提交表單,增刪查改等常規操作。
<html> <head> <meta charset="utf-8"> <title>留言板</title> </head> <body> <h1>歡迎來到留言板</h1> <form action="submit.php" method="post"> <p>請輸入您的昵稱:</p> <input type="text" name="name"><br><br> <p>請輸入您的留言:</p> <textarea name="content" rows="10" cols="50"></textarea><br><br> <input type="submit" value="提交"> </form><br><br> 原創文章,轉載請注明出處 <h2>所有留言</h2> <table border="1"> <tr> <th>編號</th> <th>昵稱</th> <th>留言內容</th> <th>時間</th> <th>操作</th> </tr> <?php //以下為 PHP 操作代碼 //鏈接數據庫 $con = mysqli_connect("localhost","用戶賬號","用戶密碼","數據庫名稱"); //查詢所有留言并按時間倒序排序 $result = mysqli_query($con, "SELECT * FROM `message` ORDER BY `time` DESC"); //循環輸出留言信息 while ($row = mysqli_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['id'] . "</td>"; echo "<td>" . $row['name'] . "</td>"; echo "<td>" . $row['content'] . "</td>"; echo "<td>" . $row['time'] . "</td>"; echo "<td>"; echo "<form action='edit.php' method='post' style='display:inline;'>"; echo "<input type='hidden' name='id' value='" . $row['id'] . "'>"; echo "<input type='submit' value='修改'>"; echo "</form>"; echo "<form action='delete.php' method='post' style='display:inline;'>"; echo "<input type='hidden' name='id' value='" . $row['id'] . "'>"; echo "<input type='submit' value='刪除'>"; echo "</form>"; echo "</td>"; echo "</tr>"; } //關閉數據庫連接 mysqli_close($con); ?> </table> </body> </html>
以上就是一個簡單的 HTML 留言板源代碼,只需稍作修改即可在自己的網站中使用,適用于個人博客、網站等。
上一篇framer vue
下一篇mysql只能輸入1和0