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

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

PHPz
Release: 2018-10-09 16:24:36
forward
1360 people have browsed it

这篇文章主要介绍了PHP简单获取多个checkbox值的方法,结合实例形式分析了php表单操作中针对checkbox值的传递与获取技巧,需要的朋友可以参考下

本文实例讲述了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[&#39;hobby&#39;] as $i)
{
 echo &#39;<br>&#39;;
 $result .= $i;
}
echo $result;
Copy after login

 更多相关教程请访问 php编程从入门到精通全套视频教程

Related labels:
php
source:jb51.net
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!