checkbox在html中是以數組形式存儲的,如果我們要獲取用戶選擇了我個checkbox值我們可以利用遍歷或直接把數組利用implode轉換在字符進行存儲。
php要求同名表單元素用數組形式命名,並賦予value。否則他不能分解。
例1:利用foreach遍歷checkbox
代碼如下 復制代碼 <input type=checkbox name="chk[]" value=1>提交後,用$_POST['chk']訪問。數組中的元素為選中的復選框的值
PHP代碼:
代碼如下 復制代碼 <?php
foreach( $_POST["chk"] as $i=>$a )
{ echo $i."==>".$a."<br />"; }
//或者使用$_POST["chk"][0]單獨使用
?>
結果:
0=>1
1=>2
2=>3
例2利用explode
代碼如下 復制代碼
<table> <form action="index.php" method="post"> <tr> <td> <ol> <li><input type="checkbox" name="lang[]" id="lang" value="1" />中文普通話</li> <li><input type="checkbox" name="lang[]" id="lang" value="11" />日語</li> <li><input type="checkbox" name="lang[]" id="lang" value="10" />朝鮮語</li> <li><input type="checkbox" name="lang[]" id="lang" value="9" />西班牙語</li> <li><input type="checkbox" name="lang[]" id="lang" value="8" />俄語</li> <li><input type="checkbox" name="lang[]" id="lang" value="7" />德語</li> <li><input type="checkbox" name="lang[]" id="lang" value="6" />法語</li> <li><input type="checkbox" name="lang[]" id="lang" value="5" />英語</li> <li><input type="checkbox" name="lang[]" id="lang" value="4" />少數民族語言</li> <li><input type="checkbox" name="lang[]" id="lang" value="3" />中文閩南語</li> <li><input type="checkbox" name="lang[]" id="lang" value="2" />中文粵語</li> <li><input type="checkbox" name="lang[]" id="lang" value="12" />其它國家語言</li> </ol> </td> </tr> <tr> <td> <input name="submit" type="submit" value="submit" /> </td> </tr> </form> </table> <?php $CACHE['lang'] = array( '1'=>'中文普通話', '11'=>'日語', '10'=>'朝鮮語', '9'=>'西班牙語', '8'=>'俄語', '7'=>'德語', '6'=>'法語', '5'=>'英語', '4'=>'少數民族語言', '3'=>'中文閩南語', '2'=>'中文粵語', '12'=>'其它國家語言', ); $lang = $_POST['lang']; if (is_array($lang)){ $cbsports = '<ol>'; foreach ($CACHE['lang'] as $key => $val) { $cbsports .= '<li><input type="checkbox" name="lang[]" id="lang" value="'.$key.'" '.(in_array($key,$lang) ? 'checked="checked"' : '').' />'.$val.'</li>'; } $cbsports .= '</ol>'; echo $cbsports; } else { echo '請勾選後提交'; } ?>
如果需要保存到數據庫,按照下面的方式處理後,把$expr的值存儲即可。
代碼如下 復制代碼if(!emptyempty($lang)) { $expr = join(",", $lang); }
顯示的時候再這樣處理後就可以重新生成原來的數組。
代碼如下 復制代碼$lang = explode(',',$row(lang));
備注:使用serialize() 和unserialize() 可以直接存儲數組,不過字段要text類型,不太理想。
例3、需要同時刪除多項,或同時修改多項記錄
要點:
1,前端表單中name要加[],如:<input type="hidden" name="id[]" value="{$vo.id}">
2,後端接受如:$id = $_POST [id] [$i]; $i為for中的循環變量,當$i相同時可以使得$_POST [id] [$i]和$_POST [name] [$i]為一一對應;
一,前端表單:
<form name="form1" method="post" action="__GROUP__/Repair/updateList">
對所選操作:<input type="submit" value="保 存" class="btn btn-primary"> <br>
<table id="checkList" class="list table table-hover">
<tr>
<th scope="col"><input id="check" type="checkbox"
onclick="checkAll()" /> 全選</th>
<th scope="col">主題</th>
<th scope="col">校區</th>
<th scope="col">房間</th>
<th scope="col">報修人</th>
<th scope="col">聯系電話</th>
<th scope="col">報修時間</th>
<th scope="col">審核</th>
<th scope="col">報修狀態</th>
</tr>
<volist name="list" id="vo">
<tr>
<td><input type="checkbox" name="key" value="{$vo.id}">{$vo.id}<input type="hidden" name="id[]" value="{$vo.id}"></td>
<td>{$vo.topic}</td>
<td>{$vo.xiaoqu}</td>
<td>{$vo.room}</td>
<td>{$vo.pname}</td>
<td>{$vo.phone}</td>
<td>{$vo.create_time|date='Y-m-d H:i:s',###}</td>
<td><select name="check[]"><switch name="vo.check">
<case value="0">
<option value="0" selected="selected">未審核</option>
<option value="1">審核</option>
</case> <default />
<option value="0">未審核</option>
<option value="1" selected="selected">審核</option>
</switch></select></td>
<td><select name="status[]"><switch name="vo.status">
<case value="已修">
<option value="未修">未修</option>
<option value="任務已下">任務已下</option>
<option value="已修" selected="selected">已修</option>
</case> <case value="任務已下">
<option value="未修">未修</option>
<option value="任務已下" selected="selected">任務已下</option>
<option value="已修">已修</option>
</case> <default />
<option value="未修" selected="selected">未修</option>
<option value="任務已下">任務已下</option>
<option value="已修">已修</option>
</switch></select></td>
</tr>
</volist>
</table>
</form>
二,服務端處理代碼
<?php
/**
* 批量修改狀態
*/
public function updateList() {
$result = false;
for($i = 0; $i < count ( $_POST [id] ); $i ++) {
$id = $_POST [id] [$i];
$check = $_POST [check] [$i];
$status = $_POST [status] [$i];
// 保存登錄信息
$Repair = M ( 'Repair' );
$data ['id'] = $id;
$data ['check'] = $check;
$data ['status'] = $status;
$result = $Repair->save ( $data );
}
if (false !== $result) {
$this->success ( '修改成功!' );
} else {
$this->error ( '修改失敗!' );
}
}