Home > php教程 > php手册 > body text

PHP简单获取多个checkbox值的方法,phpcheckbox

WBOY
Release: 2016-07-06 14:24:44
Original
815 people have browsed it

PHP简单获取多个checkbox值的方法,phpcheckbox

本文实例讲述了PHP简单获取多个checkbox值的方法。分享给大家供大家参考,具体如下:

HTML页面:

<html>
 <head>
 </head>
 <body>
 <form name="myform" enctype="multipart/form-data" action="index2.php" method="post">
  兴趣爱好:<input type="checkbox" name="hobby[]" value="阅读"/>阅读
     
  <input type="checkbox" name="hobby[]" value="篮球"/>篮球
     
  <input type="checkbox" name="hobby[]" value="旅游"/>旅游
  <br>
文件上传:<input name="myfile" type="file">
  <input type="submit" value="提交" />
 </form>
 </body>
</html>

Copy after login

PHP页面:

$result = "";
foreach( $_POST['hobby'] as $i)
{
 echo '<br>';
 $result .= $i;
}
echo $result;

Copy after login

希望本文所述对大家php程序设计有所帮助。

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!