将表单插入表中

时间:2016-12-26 14:04:00

标签: php html html-table

我在php中的表就像那样

enter image description here

我想在php代码中添加动态代码,当我们选择单选按钮的右上角时,按下提交按钮应该在所选的十字架中看到星号。

enter image description here

请帮助我。非常感谢您的支持!

<?php 
echo "<table border =1>";
for ($i=1;$i<=7;$i++) {
echo"<tr></tr>";
for($j=1;$j<=6;$j++){
    echo"<td width='30'height='30'></td>";
}}

1 个答案:

答案 0 :(得分:2)

如果你想动态操作html元素,那么你需要使用javascript而不是php。通过一些jquery帮助我们可以构建你的表系统,遵循以下代码:

Resources.NotFoundException