POST同名参数数组的实现介绍

本篇文章是对php获取$_POST同名参数数组的实现方法进行了详细的分析介绍,需要的朋友参考下

今天写php的时候发现$_POST["arr"]无法获取参数arr的数组,记录一下。
例如有以下表单需要提交:

复制代码 代码如下:


  <input type="checkbox" value="" />
  <input type="checkbox" value="" />
  <input type="checkbox" value="" />
  <input type="checkbox" value="" />


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

复制代码 代码如下:


  <input type="checkbox" value="" />
  <input type="checkbox" value="" />
  <input type="checkbox" value="" />
  <input type="checkbox" value="" />


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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c0fd77c8ee0dc4bd3ba19b0218d5e229.html