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

php获取$_POST同名参数数组

WBOY
Release: 2016-06-13 11:29:24
Original
1252 people have browsed it

 今天写php的时候发现$_POST["arr"]无法获取参数arr的数组,记录一下。

 例如有以下表单需要提交:

  

  

  

  

 使用$_POST["arr"]只能获得最后选择的复选框的值,要获得全部选中的复选框的值需要把表单修改成下面:

  

  

  

  

这样就可以使用$_POST["arr"]获得全部选中的checkbox的值了。

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