0

现在我正在处理一个有多个内容的页面,每个内容都有一个框架。我总共有 5 个框架,我需要用新框架加载每个产品。当 5 帧完成时,再次加载 1、2、3、4、5。但我不明白我该怎么做。在我的代码下方。

<?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
}
?>  
4

1 回答 1

1

最后我完全不明白

我认为你必须做这样的事情

while(get your products){
echo "..........details..........";
echo "..........details..........";
echo "..........details..........";
      while(get your products images with limit of 5){
          echo "images details";
      }
}

也许帮助...

于 2013-10-23T23:03:40.810 回答