我們一般是獲取表單提交的數據,如果下面我們利用checkbox[]來操作,下面看實例。
-->
<form id="form1" name="form1" method="post" action="">
1
<input type="checkbox" name="checkbox[]" id="checkbox" value="1" />
2
<input type="checkbox" name="checkbox[]" id="checkbox2" value="2" />
3
<input type="checkbox" name="checkbox[]" id="checkbox3" value="3" />
<input type="submit" name="button" id="button" value="提交" />
</form>
<?
if( $_post )
{
print_r( $_post );
//輸也是以數據形式保存的,
/*
array
(
[checkbox] => array
(
[0] => 1
[1] => 2
[2] => 3
)
[button] => 提交
)
這樣就好操作了,我們只要如下
*/
$array = $_post['checkbox'];
print_r( $array );
/*
得到內容如下
array
(
[0] => 1
[1] => 2
[2] => 3
)
其實1,2,3就是我們想要的內容,我們就可以利用sql的in來批量實現刪除了。
*/
$ids = implode(',',$array );
$sql ="delete from 表名 where id in($ids ) ";
mysql教程_query($sql);
//這樣就實現的數據的批量刪除哦。
//本站原創轉載注明來源http://www.bKjia.c0m 否則必究!
}