每个项目加载不同的花式边框

时间:2013-10-23 23:01:07

标签: php css

大家好我想做这个,就像我有5帧(花式边框),我有项目列表。当项目加载每个项目加载不同的框架。当5帧完成然后第6帧重复帧列表。在我的脚本下面

<?php
$allgfts=mysql_query("select id,image_url from {$statement} order by id limit {$startpoint}, {$limit}");
while($gfts=mysql_fetch_array($allgfts))
{
    $id=$gfts['id'];
    $image=$gfts['image_url'];
?>
    <div id="pic-1">
        <div class="thumbnail-item">
            <?php echo '<a href="g_detail.php?id='.$id.'"><img src="images/'.$image.'" alt="" width="161" height="161" class="thumbnail g-size" /></a>'; ?>
            <span><?php echo '<a href="g_detail.php?id='.$id.'">Readmore</a>';?></span>
            <?php echo '<a class="gtbtn" href="g_buy.php?id='.$id.'">Get This</a>';?>

        </div>     
    </div>  
<?php
}
?>  

2 个答案:

答案 0 :(得分:0)

使用余数运算符(“%”)。我不知道您的表结构是什么样的,但我将假设您的产品ID按顺序加载,从1开始。

在WHILE循环中,使用以下内容:

$remainder = $id % 5;
if($remainder == 1){
    //load my DIV with frame 1
}
else($remainder == 2){
    //load my DIV with frame 2
}
......

答案 1 :(得分:0)

我想你问的是如何回显一个图像列表,每隔五个项目将该列表包装成一个新行。

给定一个表的结果数组(顺便考虑使用PDO),我会做以下事情:

//$arr being the array
$x=1; //start counter
$list = '<ul>'; //using a list, because that's what it is
for($i=0;$i<count($arr);$i++) {
    $list.='<li class="thumbnail-item">';
        $thumb ='<a href="g_detail.php?id='.$arr[$i][id].'">';
        $thumb.='<img src="images/'.$arr[$i][image_url].'" alt="" class="thumbnail g-size" /></a>';
        $thumb.='<span><a href="g_detail.php?id='.$arr[$i][id].'>Readmore</a></span>';
        $thumb.='<a class="gtbtn" href="g_buy.php?id='.$arr[$i][id].'">Get This</a>';
    $list.=$thumb;
    $list.='</li>';

if($x%5 == 0)||($x==count($arr)) {
    $list.='</ul>';
    if($x<count($arr)) {
        $list.='<ul>';
    }
    }
    $x++;
}
echo $list;

这是未经测试的,但从广义上讲应该有效。