我们一般是获取表单提交的数据,如果下面我们利用checkbox[]来操作,下面看实例:
- 1
- "checkbox" name="checkbox[]" id="checkbox" value="1" />
- 2
- "checkbox" name="checkbox[]" id="checkbox2" value="2" />
- 3
- "checkbox" name="checkbox[]" id="checkbox3" value="3" />
-
- "submit" name="button" id="button" value="提交" />
-
-
- if( $_post )
- {
- print_r( $_post );
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $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);
这样就实现的数据的批量删除. |