2

我有这个工作正常的语句,但从左到右按字母顺序列出 3 列。我希望它按字母顺序垂直向下列,然后继续到下一列。任何人都知道我该怎么做。

$models = mysql_query("SELECT model, id FROM model where make='$phonemake' order by model asc") or die(mysql_error());      
$count = 0;    
$max = 3;    
while($model = mysql_fetch_array( $models ))
{    
    $count++;    
    echo "<div style='float:left; width:31%; padding-right:5px;'>".$model['model']."&nbsp;<a href='include/delete-model.php?id=".$model['id']."' onclick='return makesure".$model['id']."();'>Delete</a></div>";
    if($count >= $max){
        //reset counter
        $count = 0;
        //end and restart
        echo"<div style='clear:both;'></div>";
4

2 回答 2

0

回显 UL LIST 中的数据,并使用您的计数器设置 UL LIST 中的行数,当计数器达到最大值时,创建一个新列表并继续显示。我个人会使用:

if($counter%3==0) {
   create new list
}

这样你就不需要每次都重置计数器。

于 2013-02-28T08:16:42.053 回答
0

你有两个选择:

您可以将结果缓冲到数组中并更改 div 的添加顺序

代码可能如下所示:

$allmodels = array();
while($model = mysql_fetch_array( $models ))
{    
  $allmodels[] = $model;
}
for($i = 0; 3 * $i < count($allmodels); $i++)
{
    for($j = 0; $j < 3; $j++)
    {
        if(isset($allmodels[($i * 3) + $j]))
        {
          $model = $allmodels[($i * 3) + $j];
          // print your stuff here...
        }
    }
}

或者您可以以某种方式重新排序 sql 查询中的项目,可能将其转储到临时表或使用 mysql_data_seek。

于 2013-02-28T08:24:17.057 回答