foreach checkbox POST in php(php中的foreach复选框POST)
问题描述
基本上我的问题如下,如何在 PHP 中执行 $_POST 请求时选择已选中"复选框,目前我有复选框正在执行如下所示的数组.
Basically my question is the following, how can i select on "Checked" checkbox's while doing a $_POST request in PHP, currently i have the checkbox's doing an array as shown below.
<input type="checkbox" value="1" name="checkbox[]">
<input type="checkbox" value="2" name="checkbox[]">
<input type="checkbox" value="2" name="checkbox[]">
<input type="checkbox" value="3" name="checkbox[]">
我希望能够做这样的事情
I want to be able to do something like this
foreach(CHECKED CHECKBOX as CHECKBOX) {
echo CHECKBOX VALUE;
}
我试过做类似的事情,但它没有回响任何东西.
I've tried doing similar to that and it's not echoing anything.
推荐答案
foreach($_POST['checkbox'] as $value) {
}
请注意,$_POST['checkbox']
将仅在至少一个复选框被选中时存在.因此,您必须在该循环之前添加一个 isset($_POST['checkbox'])
检查.最简单的方法是这样的:
Note that $_POST['checkbox']
will only exist if at least one checkbox is checked. So you must add an isset($_POST['checkbox'])
check before that loop. The easiest way would be like this:
$checkboxes = isset($_POST['checkbox']) ? $_POST['checkbox'] : array();
foreach($checkboxes as $value) {
// here you can use $value
}
这篇关于php中的foreach复选框POST的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:php中的foreach复选框POST
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01