Home > php教程 > php手册 > PHP批量删除技巧

PHP批量删除技巧

WBOY
Release: 2016-06-13 10:36:30
Original
1086 people have browsed it

首先要了解sql语句  

 

$SQL="delete from `bkJia` where id in (1,2,4)";
表单大概是:

 








php函数主要用到implode  


$ID_Dele= implode(",",$_POST[ID_Dele]);
$SQL="delete from `user` where id in ($ID_Dele)";

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template