<?php
$x = 1;
while ($x <= 16){
$getImages[] = $db->query("select * from table1 where h_ID = {$x} ")->getRow();
$x++;
}
// when display / using the image , use a foreach loop
foreach($getImages as $Images){
//do something like echo <img src='$Images'> or whatever you want to accomplish
}
?>
1条答案
按热度按时间ia2d9nvy1#
通过while循环将所有数据放入一个数组(如
$getImages[]
),然后使用foreach循环完成所需操作(如逐个显示图像)注:没有点的使用两个$x++;否则将跳过总共16条记录中的一半记录
所以代码: