PHP中CheckBox多選框上傳失敗的代碼寫法詳解

來源:互聯網
上載者:User
這篇文章主要介紹了PHP中CheckBox多選框上傳失敗的代碼寫法,以及php處理checkbox複選框表單提交問題,需要的朋友可以參考下

用慣Java和其他語言的時候,表單上傳只需要checkbox的name相同的時候就可以上傳了

<input type="checkbox" name="checkbox" value="1"> 選項<input type="checkbox" name="checkbox" value="2"> 選項<input type="checkbox" name="checkbox" value="3"> 選項<input type='button' value='確定' onclick="fun()"/>

但是PHP卻只有在這種情況下,name要寫成數組形式才能正常表單提交

<input type="checkbox" name="checkbox[]" value="1"> 選項1<input type="checkbox" name="checkbox[]" value="2"> 選項2<input type="checkbox" name="checkbox[]" value="3"> 選項3<input type="checkbox" name="checkbox[]" value="4"> 選項4<input type="checkbox" name="checkbox[]" value="5"> 選項5<input type="checkbox" name="checkbox[]" value="6"> 選項6<input type='button' value='確定' onclick="fun()"/>

下面給大家補充PHP處理Checkbox複選框表單提交問題

PHP表單提交頁面複選框的名稱後要加[],這樣在接收頁面才能得到正確的結果。表單提交後得到的是一個數組,然後通過訪問數組元素得到表單的具體vaule值。得到的checkbox1的值,預設有</br>換行。

表單代碼:

<form action="" method="post" name="asp">   複選框1:<input type="checkbox" name="checkbox1[]" value="1" />   複選框2:<input type="checkbox" name="checkbox1[]" value="2" />   複選框3:<input type="checkbox" name="checkbox1[]" value="3" />   <input type="submit" name= "Download" vaue="Download" />  </form>

PHP處理表單代碼:

<?php    if(isset($_POST["Download"]))    {      foreach($_REQUEST['checkbox1'] as $checkbox1)      {           echo $checkbox1;      }    } ?>

以上就是本文的全部內容,希望對大家的學習有所協助。


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.