嗨,我正在从数据库中检索我的数据,当我检索它们时,我的数据是(图片和名称)我将它们放在 4 列中现在我想限制每页中的行数,我希望每页只显示三行,如果有是更多数据我想让它显示在下一页
我的代码:
<?php
$items_in_row = 4 ;
$index = 0 ;
?>
<table>
<tr>
<?php
while ($row = mysql_fetch_array( $result , MYSQL_ASSOC)){
$index++ ; ?>
<td>
<p>
<img id='g1' src='/<?php echo $row["img"] ;?>' width=130 height=130 onClick='f1()'>
</p>
<p> Name: <?php echo $row['name'] ; ?> </p>
<br>
</td>
<?php if ($index%$items_in_row == 0){ ?>
</tr>
<tr>
<?php }
} ?>
</tr>
</table>