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

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

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

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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn