在网页上的 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表包含“tickets”表中的数据,并在相应的列中显示值。
以上是如何在 HTML 表中显示 MySQL 数据库值?的详细内容。更多信息请关注PHP中文网其他相关文章!