php全选删除-如何提交删除!请高手帮忙!

发布网友 发布时间: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['复选框名']."')

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com