如何使用php逐行显示html表

时间:2017-06-10 12:05:12

标签: php html

这是我使用php显示html表的代码:

echo "<table border='1'>";
        for ($r =0; $r < $rows; $r++){
             echo'<tr>';
             echo "<th> Etat".$r."</th>";
             for ($c = 0; $c < $rows; $c++){
                 echo '<td><input type="checkbox" name="'.$r.''.$c.'" placeholder="nb d etat" /></td>';
               }
                 if ($c==$rows) {
            ECHO '<td><input type="number" name="'.$r.''.$c.'" placeholder="etat" /></td>';
          }
           echo '</tr>'; // close tr tag her
        }
echo "</table>";

这是用于恢复数据的php文件

 foreach ($p as $k => $v) {
 if ($v=="on") {
    # code...
     $a= "X$k \n";
     echo $a;
 }

else {
    $b="$v \n";
    echo $b;
}

}

这就是结果:

X00 
X02 
12 
X10 
X11 
21 
X22 
17 

目标是: 如果选中该复选框,则恢复同一行的键,如下所示:

(X00+X01+X02 .......etc)

跟随recupere值(在表的最后一列中输入)ex:12 最后想要像这样描述每一行:

12(X00+X02)
21(X10+X11)
17(X22)

i want just to display this table like this

请帮我这样做 并提前感谢

0 个答案:

没有答案