Home >Backend Development >PHP Tutorial >html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?

html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?

WBOY
WBOYOriginal
2016-06-06 20:44:54860browse

html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?
html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?

最终实现最后一张图的效果,不知道我的前两个图的步骤哪里有问题?求解~~

回复内容:

html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?
html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?

最终实现最后一张图的效果,不知道我的前两个图的步骤哪里有问题?求解~~

<code><?php if(isset($_POST['select'])) {
    $arr = array('A', 'B', 'C');
    foreach($arr as $item) {
        if(in_array($item, $_POST['select'])) 
            echo "选项 $item 的value值已经被正确传递<br>";
        else 
            echo "选项 $item 没有被选择,其value值没有被传递<br>"; 
    }
}
?>
<form action method="post">
<input name="select[]" type="checkbox" value="A">
<input name="select[]" type="checkbox" value="B">
<input name="select[]" type="checkbox" value="C">
<input type="submit" value="OK">
</form>
</code>
Statement:
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