微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 从复选框中获取所有值?

参见英文答案 > Get $_POST from multiple checkboxes6个
有没有一种简单的方法获取多个复选框的值并将它们存储在数据库中?
<?PHP
if(isset($_POST['go'])){
   $fruit = $_POST['fruit'].",";
   echo $fruit;
   // if you selected apple and grapefruit it would display apple,grapefruit
}
?>
<form method="post">
Select your favorite fruit:<br />
<input type="checkBox" name="fruit" value="apple" id="apple" /><label for="apple">Apple</label><br />
<input type="checkBox" name="fruit" value="pinapple" id="pinapple" /><label for="pinapple">Pinapple</label><br />
<input type="checkBox" name="fruit" value="grapefruit" id="grapefruit" /><label for="grapefruit">Grapefruit</label><br />
<input type="submit" name="go" />
</form>
如果给复选框指定相同的名称,以[]结尾,则值将作为数组返回.
<input type="checkBox" name="fruit[]" value="apple" />
<input type="checkBox" name="fruit[]" value="grapefruit" />

然后在PHP

if( isset($_POST['fruit']) && is_array($_POST['fruit']) ) {
    foreach($_POST['fruit'] as $fruit) {
        // eg. "I have a grapefruit!"
        echo "I have a {$fruit}!";
        // -- insert into database call might go here
    }

    // eg. "apple,grapefruit"
    $fruitList = implode(',',$_POST['fruit']);
    // -- insert into database call (for fruitList) might go here.
}

PS.请原谅明显的错误,这个例子可能会喊“我有一个苹果”……我没想到让这个例子足够聪明,以确定何时使用“a”,何时使用“an”:P

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐