HTML5 留言板源代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>留言板</title> </head> <body> <h1>留言板</h1> <form action="#" method="post"> <label for="name">姓名:</label> <input type="text" name="name" required> <br><br> <label for="message">留言:</label> <textarea name="message" cols="30" rows="10" required></textarea> <br><br> <input type="submit" value="提交"> </form> <hr> <h2>留言列表</h2> <ul> <?php $db = new PDO('mysql:host=localhost;dbname=guestbook;charset=utf8', 'root', 'password'); $stmt = $db->query('SELECT * FROM messages ORDER BY created_at DESC'); while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) { echo '<li><strong>' . htmlspecialchars($row['name']) . '</strong>:' . htmlspecialchars($row['message']) . '<br><br>' . $row['created_at'] . '</li>'; } ?> </ul> </body> </html>
以上是一個簡單的留言板的 HTML5 源代碼。其中包括一個提交表單和一個留言列表,留言將被存儲在 MySQL 數據庫中。
下一篇dockerdeis