每隔三个循环后插入tr

时间:2012-01-25 18:56:58

标签: php html-table modulus

我正在用PHP创建一个论坛。我必须在表格中显示所有论坛类别,为此,我使用了while循环。但是,我想在每个表行中只有3个td。为了遍历类别,我在查询中使用while循环,所以我认为我不能在这里使用模数。

3 个答案:

答案 0 :(得分:13)

为什么你不能使用模数?只需在某个地方添加一个计数器,如果它点击% 3 == 0重置计数器并做你的东西。

你可能需要为第一个和最后一个以及类似的东西做一些额外的事情,但没有理由不使用模数一段时间。

$i=0;
while(guard()){
    if($i % 3 == 0){
       //ploing
    }
 $i++
}

答案 1 :(得分:13)

此代码将关闭所有额外的行:

<table>
<?php
$columns = 3;
$i = 0;
while($row = mysql_fetch_array($result)){
    $i++;
    //if this is first value in row, create new row
    if ($i % $columns == 1) {
        echo "<tr>";
    }
    echo "<td>".$row[0]."</td>";
    //if this is last value in row, end row
    if ($i % $columns == 0) {
        echo "</tr>";
    }
}
//if the counter is not divisible by the number of columns, we have an open row
$spacercells = $columns - ($i % $columns);
if ($spacercells < $columns) {
    for ($j=1; $j<=$spacercells; $j++) {
        echo "<td></td>";
    }
    echo "</tr>";
}
?>
</table>

答案 2 :(得分:2)

我没有测试过代码,但逻辑应该有效:

<Table>
<?php
$i = 0;
while($row = mysql_fetch_array($result)){
    if($i == 0){
        echo"<TR>";
    }
    echo"<td>".$row[0]."<TD>";
    $i++;
    if($i == 3)
    {
        $i = 0;
        echo"</tr>"
    }
}
if($i ==1){
    echo "<td></td><td></td></tr>";
}
if($i ==2)
{
    echo "<td></td></tr>";
}
?>
<table>