发布网友 发布时间:2022-04-06 01:00
共2个回答
热心网友 时间:2022-04-06 02:29
<form id="form1" name="form1" method="post" action="">
<table width="53%" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td width="9%"><input name="selectid[]" type="checkbox" id="selectid[]" value="1" /></td>
<td width="91%">A</td>
</tr>
<tr>
<td><input name="selectid[]" type="checkbox" id="selectid[]" value="checkbox" /></td>
<td>B</td>
</tr>
<tr>
<td><input name="selectid[]" type="checkbox" id="selectid[]" value="checkbox" /></td>
<td>C</td>
</tr>
</table>
<p align="center">
<input type="submit" name="Submit" value="提交" />
</p>
</form>
<?
if ($_POST['selectid']) {
$ids = implode(',', $_POST['selectid']);
mysql_query("DELETE FROM table WHERE id IN ($ids)");
} else {
echo "<script language='javascript'>alert('请选择要操作的记录!');history.back();</script>";exit;
}
?>
热心网友 时间:2022-04-06 03:47
全选删除是在MYSQL里执行的
你可以用复选框,复选框的值,即value值为数据库的一个列中的数据
sql语句如下
delete from 表名 where 列名 in ('".$_post['复选框名']."')