Rumah >pembangunan bahagian belakang >tutorial php >html - PHP实现表单内提取复选框内容,不知道哪里出错了,求解 ~~?

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

WBOY
WBOYasal
2016-06-06 20:44:54860semak imbas

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>
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn