本文为大家介绍了php执行批量删除的sql语句写法,以一个表单为示例,讲解了通过表单提交id,后台组织sql进行批量删除的功能,使用了sql中的in语法,感兴趣的同学参考下. 首先要了解sql语句 $SQL="delete from `table` where id in (1,2,4)"; 表单大概是: <form action="" method="post"> <input name="ID_Dele[]" type="checkbox" id="ID_Dele[]" value="1"/> <input name="ID_Dele[]" type="checkbox" id="ID_Dele[]" value="2"/> <input name="ID_Dele[]" type=
本文为大家介绍了php执行批量删除的sql语句写法,以一个表单为示例,讲解了通过表单提交id,后台组织sql进行批量删除的功能,使用了sql中的in语法,感兴趣的同学参考下.
首先要了解sql语句
$SQL="delete from `table` where id in (1,2,4)";
表单大概是:
<form action="" method="post">
<input name="ID_Dele[]" type="checkbox" id="ID_Dele[]" value="1"/>
<input name="ID_Dele[]" type="checkbox" id="ID_Dele[]" value="2"/>
<input name="ID_Dele[]" type="checkbox" id="ID_Dele[]" value="3"/>
<input name="ID_Dele[]" type="checkbox" id="ID_Dele[]" value="4"/>
<input type="submit"/>
</form>
php函数主要用到implode
$ID_Dele= implode(",",$_POST['ID_Dele']);
$SQL="delete from `user` where id in ($ID_Dele)";
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!