遇到麻烦,难以从我的表格中显示所有检查箱值。
我的表格如下:
<form name= foo method= post action= >
<table>
<tr>
<td class= bla >Checkbox: <input type= checkbox name= cBox[] /></td>
</tr>
<tr>
<td class= bla >Checkbox: <input type= checkbox name= cBox[] /></td>
</tr>
<tr>
<td class= bla >Checkbox: <input type= checkbox name= cBox[] /></td>
</tr>
</table>
</form>
我的底部有一顿,由支部职能承担,该功能使表格中增加了5个空档(投入名称的阵列)。
现在,问题。 让我们说,第一个检查箱没有受到检查,最后2个检查箱也受到检查。 在我产出价值时(使用购买力平价打印机进行分解),我将:
Array ( [0] => on [1] => on)
由于某种原因,这些阵列没有包含任何未经检查的检查箱的价值。
I have seen some solutions where a hidden variable is passed with each checkbox, but can this solution be implemented in my situation (using arrays)?