在HTML 表中顯示資料庫表值
在Web 開發中,從資料庫檢索資料並將其顯示在網頁上是很常見的以表格格式。為此,我們需要建立與資料庫的連接,執行查詢以獲取數據,然後將其呈現在 HTML 表中。
查詢資料庫
第一步是使用 mysqli_connect() 函數建立與 MySQL 資料庫的連接,並使用 mysqli_query() 函數執行查詢來檢索資料。例如:
$con = mysqli_connect("localhost", "username", "password", "database_name");
$result = mysqli_query($con, "SELECT * FROM tickets");
登入後複製
取得並迭代結果
執行查詢後,我們需要取得結果並迭代它們以提取個人價值觀。我們可以使用mysqli_fetch_all() 函數以關聯數組格式取得所有結果:
$data = $result->fetch_all(MYSQLI_ASSOC);
登入後複製
產生HTML 表格
最後,我們可以建立一個HTML使用
的表標記並用數據填充它。表的每一行將代表資料庫中的一筆記錄,欄位值出現在對應的欄位中。 <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>
登入後複製
透過執行以下步驟,您可以輕鬆地從 MySQL 資料庫檢索資料並將其顯示在網頁上的 HTML 表格。
以上是如何在 HTML 表中顯示 MySQL 資料庫表資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!