在網頁上的 HTML 表中顯示 MySQL 資料庫值
要在 HTML表中擷取並顯示資料庫表中的值,請執行下列操作這些步驟:
取得資料:
範例:
$con = mysqli_connect("localhost", "peter", "abc123", "my_db"); $result = mysqli_query($con, "SELECT * FROM tickets LIMIT 50"); $data = $result->fetch_all(MYSQLI_ASSOC);
顯示資料:
顯示資料:
<table border="1"> <tr> <th>Submission ID</th> <th>Form ID</th> <th>IP</th> <th>Name</th> <th>E-mail</th> <th>Message</th> </tr> <?php foreach($data as $row): ?> <tr> <td><?= htmlspecialchars($row['submission_id']) ?></td> <td><?= htmlspecialchars($row['formID']) ?></td> <td><?= htmlspecialchars($row['IP']) ?></td> <td><?= htmlspecialchars($row['name']) ?></td> <td><?= htmlspecialchars($row['email']) ?></td> <td><?= htmlspecialchars($row['message']) ?></td> </tr> <?php endforeach ?> </table>
以上是如何在 HTML 表中顯示 MySQL 資料庫值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!