Home > php教程 > PHP源码 > body text

PHP处理Checkbox多选框表单元素的例子

WBOY
Release: 2016-06-08 17:19:34
Original
1445 people have browsed it

Checkbox的值获得与普通的input获得方法是不一样了,我们下面来看一篇PHP处理Checkbox多选框表单元素的例子,希望能够让各位知道如何使用php来接受checkbox的值哦。

<script>ec(2);</script>

最近做Form表单提交的时候,复选框Checkbox提交的数据不知道怎么处理,Checkbox允许多个选项,我们不可能每个选项都自定义Name属性,然后后台一一获取,这样也不方便扩展。

后来查了些资料后发现,关键点在于Checkbox的Name属性上。需要给checkbox一个统一的数组形式的Name,例如mycheckbox[],对的就是PHP中定义数组的一种方式。然后在后台获取这个数据,例如POST表单的$_POST[‘mycheckbox’],此时这个数据已经是一个数组了。下面是一个简单的例子。

Form表单代码

html
css

PHP表单处理

var_dump($_POST);
if (isset($_POST["hobby"])) {
    foreach ($_POST["hobby"] as $hobby) {
        echo "语言:{$hobby}
";
    }
}

其实任何一组相同数据的文本框,都可以使用这种方式批量获取值,而不仅限于CheckBox。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template