php+mysql批量删除信息代码 GET方式接受收所有id并批量删除
//接收GET传来的数组
$arr =explode(",", $_GET["item"]);//转换数组
$str = implode("','",$arr);//修改删除形式in ('1','2','3')
$res=$empire->query("delete from phome_enews_".$surface." where id in('{$str}')");