gpt4 book ai didi

php - 按行显示图像

转载 作者:行者123 更新时间:2023-11-29 08:16:35 25 4
gpt4 key购买 nike

我有这段代码以 5 行的形式显示图像,但由于某种原因,代码在第一行的末尾添加了一个图像。

这段代码有错误吗?如果没有,我该如何更改它以停止在第一行末尾添加额外的图像。

代码:

$query = mysql_query("SELECT * FROM gallery WHERE gallery_number='$gallery_number'");

echo '<table width="960">';
$i = 0; //first, i set a counter
while($fetch = mysql_fetch_assoc($query)){
//counter is zero then we are start new row
if ($i==0){
echo '<tr>';
}
//here we creating normal cells <td></td>
$image_name = $fetch['image_name'];
$image_location = $fetch['image_location'];
echo '<td>'.'<img src="'.$image_location.'" alt="'.$image_name.'"/>'.'</td>';
//there is a magic - if our counter is greater then 5 we set counter to zero and close tr tag
if ($i>5){
$i=0;
echo '</tr>';
};
$i++; //$i = $i + 1 - counter + 1
}
echo '</table>';

最佳答案

您以 0 开始 $i 计数,因此通过您的检查,它将返回 6 个结果。

if ($i>5){
$i=0;
echo '</tr>';
};

应该是这样的:

if ($i>4){
$i=0;
echo '</tr>';
};

或者您可以将 $i 计数器更改为从 1 开始,然后重置为 1

关于php - 按行显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20502486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com