如何通过php创建一个动态行数和单元格的表

时间:2016-02-15 20:13:12

标签: php html

我想创建一个具有动态行()的表,并且每行中有5个单元格(td)。 例如:

jar cf C:\Users\Dalton\AppData\Local\Temp\Test.jar -C C:\Users\Dalton\AppData\Local\Temp\Test\com.Test com\Test

如果例如$ rows = 7,我们应该有两个tr。第一个tr有5个td,第二个tr有两个td。

1 个答案:

答案 0 :(得分:1)

  

...如果例如$ rows = 7,我们应该有两个tr。第一个tr有5个td,第二个tr有两个td。

使用for循环。

$rows=mysqli_affected_rows($dbCnn); // for example, $rows = 7;

$counter = 1;
echo "<table><tr>";
for($i = 0; $i < $rows;){
    if($counter % 6 == 0){
        echo "</tr><tr>";
    }else{
        echo "<td> YOUR_VALUE </td>";
        ++$i;
    }
    ++$counter;
}
echo "</tr></table>";

Here's the demo