php- post表单 input name属性的问题
<input type='text' style='width: 99px' name='deptNo'></td>
name为字符串的时候传递的是单个字符串
<input type='text' style='width: 99px' name='deptNo[]'></td>
name为数组的时候传递的是数组
<input type='text' style='width: 99px' name='deptNo'></td>
name为字符串的时候传递的是单个字符串
<input type='text' style='width: 99px' name='deptNo[]'></td>
name为数组的时候传递的是数组