一个控制图片按每行多少个输出的问题向大家求助!谢谢
我从数据库查询出很多的图片,我现在想控制每行只显示4张图片,图片底下显示出图片名字等等,但是我下面的代码总是不能正常工作.(如果不显示名字的话我已经知道怎么做了,因为要在图片底下显示文字,所以加了一个TR,图片就不能控制了.)
[code]
while ($photoRows=mysql_fetch_array($result2)){
$i=$i+1;
?>
|
if($i%3==0 &&$i> =3)
{ echo " |
";
echo " ";
?>
[/code]
------解决方案--------------------
原理:循环单元格,在单元格中前导一个一列两行的表格即可,示例代码:
....
$i=0;
while(){
if($i%3==0&&$i!=0){
}
?>
|
$i++;
}
...
?>
------解决方案--------------------
以前的例子
$product_sql= "select * from product order by pub_time desc limit 4 ";
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn