我想从数据库表中检索值并将它们显示在页面的 html 表中。我已经搜索过这个但我找不到答案,虽然这肯定很容易(这应该是数据库的基础知识)。我想我搜索的术语具有误导性。数据库表名称是tickets,它现在有6 个字段(submission_id、formID、IP、name、email 和message),但应该还有另一个字段ticket_number。我怎样才能让它在 html 表中显示来自 db 的所有值,如下所示:
<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>
<tr>
<td>123456789</td>
<td>12345</td>
<td>123.555.789</td>
<td>John Johnny</td>
<td>johnny@example.com</td>
<td>This is the message John sent you</td>
</tr>
</table>
然后是 'john' 下面的所有其他值。