有人可以帮我吗?我无法通过多项选择来回应我的复选框组。
每当我回显复选框组时,唯一显示的就是Ive选中的最后一个框。

这是我的代码

<?php
$submit = $_POST['submit'];
$incharge = $_POST['incharge'];

if ($submit)
{
   echo $incharge;
}

?>

<table width="500" height="69">
      <tr>
        <td width="73"><label>
          <input type="checkbox" name="incharge" value="1" id="responsible_0" />
          MNFA</label></td>
          <td width="72"><label>
          <input type="checkbox" name="incharge" value="2" id="responsible_1" />
          HJB</label></td>
          <td width="70"><label>
          <input type="checkbox" name="incharge" value="3" id="responsible_2" />
          JBG</label></td>
          <td width="75"><label>
          <input type="checkbox" name="incharge" value="4" id="responsible_3" />
          MSG</label></td>
          <td width="275"><label>
          <input type="checkbox" name="incharge" value="5" id="responsible_4" />
          MGR</label></td>
      </tr>
      <tr>
      <td height="33"><label>
          <input type="checkbox" name="incharge" value="6" id="responsible_5" />
          AAP</label></td>
          <td><label>
          <input type="checkbox" name="incharge" value="7" id="responsible_6" />
          EPM</label></td>
          <td><label>
          <input type="checkbox" name="incharge" value="8" id="responsible_7" />
          SGA</label></td>
          <td><label>
          <input type="checkbox" name="incharge" value="9" id="responsible_8" />
          JLL</label></td>
          <td><label>
          <input type="checkbox" name="incharge" value="10" id="responsible_9" />
          AFM</label></td>
      </tr>
    </table>


先感谢您.. 。

最佳答案

将名称属性更改为:

name="incharge[]"


这将产生一个数组,$ incharge。

请注意,您将无法仅回显该值。您将需要“ print_r”或遍历它。

10-02 17:01