熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

php獲取$

2022-06-13   來源: PHP編程 
本篇文章是對php獲取$_POST同名參數數組的實現方法進行了詳細的分析介紹需要的朋友參考下  

  今天寫php的時候發現$_POST["arr"]無法獲取參數arr的數組記錄一下
例如有以下表單需要提交

復制代碼 代碼如下:
<input type="checkbox" name="arr" value="" />
<input type="checkbox" name="arr" value="" />
<input type="checkbox" name="arr" value="" />
<input type="checkbox" name="arr" value="" />

  
使用$_POST["arr"]只能獲得最後選擇的復選框的值要獲得全部選中的復選框的值需要把表單修改成下面

復制代碼 代碼如下:
<input type="checkbox" name="arr[]" value="" />
<input type="checkbox" name="arr[]" value="" />
<input type="checkbox" name="arr[]" value="" />
<input type="checkbox" name="arr[]" value="" />

  
這樣就可以使用$_POST["arr"]獲得全部選中的checkbox的值了


From:http://tw.wingwit.com/Article/program/PHP/201311/21235.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.