gpt4 book ai didi

php - 如何回显复选框组?

转载 作者:太空宇宙 更新时间:2023-11-03 22:05:27 24 4
gpt4 key购买 nike

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

这是我的代码

<?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”或循环遍历它。

关于php - 如何回显复选框组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6727701/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com