First of all, you need to understand the sql statement
$SQL="delete from `jb51` where id in (1,2,4)";
The form is probably:
Copy code The code is as follows:
PHP functions mainly use implode
Copy code The code is as follows:
$ID_Dele= implode(",",$_POST ['ID_Dele']);
$SQL="delete from `user` where id in ($ID_Dele)";
http://www.jb51.net/article/6488 .htm
http://www.bkjia.com/PHPjc/320064.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320064.htmlTechArticleFirst of all, you must understand the sql statement $SQL="delete from `jb51` where id in (1,2,4) "; The form is probably: Copy the code as follows: form action="" method="post" input name="ID_Dele[]" type="chec...