0

我想为每 5 个元素制作一个,我有一个 div。你可以在这里看到一个例子:http ://www.nobregamedia.com/aa/

在底部,我有一个包含 5 个元素的画廊,可通过橙色小方块进行更改。每个橙色方块都有一个指向 DIV 名称的“链接”,例如:DIV1、DIV2、DIV3。考虑到我从 MySQL 数据库中提取的项目数量,我需要自动创建它。

例如:如果我拉出 7 个项目,它会创建 2 个正方形和 2 个 div:DIV1 和 DIV2。以此类推,以 5 的倍数计算。

这是我现在拥有的代码:

<div class="idTabs">
  <div class="col2">
    <a href="#pduno"><img class="pdimg" src="img/pduno.png" width="13" height="11" /></a>
    <a href="#pddos"><img class="pdimg" src="img/pddos.png" width="13" height="11" /></a>
    <a href="#pdtres"><img class="pdimg" src="img/pddos.png" width="13" height="11" /></a>
  </div>
</div>
<div class="row-end">&nbsp;</div>
<div class="row">
  <div class="col101">
    <div id="pduno">
      <table width="920" border="0" align="left" cellpadding="0" cellspacing="0" style="text-align:left">
        <tr>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <?PHP
                            while ($retdetsfinal = mysql_fetch_row($retdest)) {
                        ?>
            <td height="110">
              <div style="width:160px; height:112px; border:2px solid #c0bdb6">
                <img src="imagenes/thumbs/<?php echo $retdetsfinal[0];?>_x.jpg" style="border:6px solid #FFF;" width="148" height="100" />
              </div>
              <br />
              <?php echo ucfirst($retdetsfinal[1]);?> -
              <?php echo ucfirst($retdetsfinal[2]);?><br />Bs.
              <?php echo $retdetsfinal[3];?>
            </td>
            <td>&nbsp;</td>
            <?PHP   
                        }
                        ?>
        </tr>
      </table>
    </div>
  </div>
</div>
4

1 回答 1

0

看看这个小提琴。尽管它可能不完全符合您的需求,当然也没有可用的样式,但它应该为您提供正确的提示以开始

于 2012-04-24T04:43:39.753 回答