我有两张桌子。一个是文章列表,另一个是类别列表。在类别表中,我使用 fetch_assoc() 从数据库中获取数据并在表中列出。但我想获取文章表中文章的数据。如何在同一个 php 文件中使用 fetch_assoc() 两次?
<table>
<caption class="table_title">Category Management</caption>
<thead>
<tr class="table_header">
<th>ID</th>
<th>Ttile</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<?php while($row = $categoryResult->fetch_assoc()) {?>
<tr class="table_content">
<td><?php echo escape($row['id'])?></td>
<td><?php echo escape($row['title'])?></td>
<td><a href="./update_category.php?id=<?php echo escape($row['id'])?>">Edit</a></td>
<td><a href="./handle_delete_category.php?id=<?php echo escape($row['id'])?>">Delete</a></td>
</tr>
<?php }?>
</tbody>
</table>
文章表
<tbody>
<?php while($row = $result->fetch_assoc()) {?>
<tr class="table_content">
<td></td>
<td></td>
<td></td>
<td><a href="./update.php">Edit</a></td>
<td><a href="./delete.php">Delete</a></td>
</tr>
<?php }?>
</tbody>
桃花长相依