8

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

4

3 回答 3

15

为什么不能使用模数?只需在某处添加一个计数器,如果它击中% 3 == 0重置计数器并执行您的操作。

您可能需要为 first 和 last 做一些额外的 if's 和类似的事情,但没有理由不使用一段时间的模数。

$i=0;
while(guard()){
    if($i % 3 == 0){
       //ploing
    }
 $i++
}
于 2012-01-25T19:00:19.247 回答
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>
于 2012-01-25T19:18:39.733 回答
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>
于 2012-01-25T19:07:26.540 回答