Use the for double-layer loop to traverse the table
菜鸟
菜鸟 2019-03-25 20:04:25
0
2
1261
<?php
echo '</table>';

//用for的双层循环来控制隔行变色的表格
echo '<br/>';
echo '<table width="800" border="1">';
for ($i = 0;$i<10;$i++){

    for ($j =0;$j<10;$j++){
        if (!$j%=10){
            echo '<tr>';
        }
            echo '<td>'.$i.'</td>';




    }
    echo '</tr>';
    //同理,每一行结束是不是应该有一个</tr>结束标签呢?
//    echo '<td>'.$i.'</td>';
}

echo '</table>';

?>

How to output the numbers in the table as 1-100猎豹截图20190325200359.png

菜鸟
菜鸟

reply all(1)
石

Just change the output $i to: ($i*10+$j+1)

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template