<input type="checkbox" class='form' name="checkbox_1" />
<input type="checkbox" class='form' name="checkbox_2" />
<input type="checkbox" class='form' name="checkbox_3" />
.........
<input type="checkbox" class='form' name="checkbox_10" />
发件人已使用“POST”方法提交。确定哪个复选框,并以递增的顺序写它们的编号。用空格(不是换行)分隔所有数字,并且不使用任何HTML格式。
例如:
如果选中了复选框3、5和10。
Ouput将是:
3 5 10
最佳答案
将标记更改为类似
<input type="checkbox" class='form' value="1" name="checkbox[]" />
<input type="checkbox" class='form' value="2" name="checkbox[]" />
<input type="checkbox" class='form' value="3" name="checkbox[]" />
并使用简单的循环获取提交的值
foreach($_POST['checkbox'] as $checkbox){
echo $checkbox . ' ';
}
关于php - 如何使用PHP post方法提交复选框值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2309801/