?php
濰坊網站建設公司創(chuàng)新互聯(lián),濰坊網站設計制作,有大型網站制作公司豐富經驗。已為濰坊千余家提供企業(yè)網站建設服務。企業(yè)網站搭建\成都外貿網站建設公司要多少錢,請找那個售后服務好的濰坊做網站的公司定做!
if?(?$_GET['xzdel']?==?1?)?{?//這里要使用比較運算符?==?,?而不是賦值運算符?=
$N_ID?=?join(',',?$_POST['BoxUser']?);?//$_POST本身是一個數(shù)組,?要達到批量刪除的話,?這里應該要將BoxUser已數(shù)組形式提交,?那么,這個時候就是個二維數(shù)組,?那么$_POST['BoxUser']得到的還是一個數(shù)組,?那么,為了適應sql語句的語法,?把數(shù)組轉換成以逗號為分隔符的字符串,?因為sql語句的in關鍵詞只能接受如?1,?2,?3這樣的參數(shù),不能直接接受數(shù)組,?mysql沒有數(shù)組的概念
if?(?$db?-?delete(?'t_nws',?'where?n_id?in('?.?$N_ID?.?')'?)?)?{
alert('刪除成功',?'new_list.php');
die;
}?else?{
echo?$sql;
}
}
以上是php部分,其他部分有空給你研究研究
表單部分:
input?name='BoxUser'?type='checkbox'?value='".$row['n_id']."'
這個name屬性,要以數(shù)組的形式進行提交, 這樣, php才會將你勾選的所有參數(shù)給提交
否則php只能接收到其中的一條
那么,應該改成
input?name='BoxUser[]'?type='checkbox'?value='".$row['n_id']."'
M('tablename')-where("id in (1,2,3,4,5)")-delete(); // 刪除tablename 表中id 為1,2,3,4,5 的5條數(shù)據(jù)。要批量刪除,改一下where 調教就行了。
需要注意的是, where 條件中的 id 須是表主鍵,或者是具有唯一索引屬性的字段
一、使用phpmyadmin工具批量刪除mysql數(shù)據(jù)庫表
使用phpmyadmin數(shù)據(jù)庫管理工具進行刪除,這是一個傳統(tǒng)的方法,在任何php虛擬主機中,你都可以操作。下面是操作過程介紹:
登錄phpmyadmin。選擇你的Mysql數(shù)據(jù)庫名進入——點擊結構——選擇您要刪除的數(shù)據(jù)表——“選中項”中選擇刪除,執(zhí)行刪除表操作。
二、使用php腳本完成批量刪除
從網上找了一段php代碼,也可以幫我們快速實現(xiàn)刪除。如果你對phpmyadmin工具“敏感”,可以使用下面的方式來實現(xiàn)快速刪除mysql數(shù)據(jù)庫表。
1.前臺
!DOCTYPE html
html
head
title批量刪除/title
/head
body
scripttype="text/javascript"
//復選框
function checkall(all)
{
var ck = document.getElementsByClassName("ck");
if(all.checked)
{
for(var i=0;ick.length;i++)
{
ck[i].setAttribute("checked","checked");
}
}
else
{
for(vari=0;ick.length;i++)
{
ck[i].removeAttribute("checked");
}
}
}
/script
formaction="test.php"method="post"
tableborder="1"
trthinputtype="checkbox"name="all"onclick="checkall(this)"/id/thth名字/th/tr
!-- 此處調用顯示列表函數(shù) --
?phpshow() ?
trtdcolspan="3"inputtype="submit"value="批量刪除"/td/tr
/table
/form
/body
?php
//顯示列表
function show()
{
//連接數(shù)據(jù)庫
@mysql_connect('localhost','root','');
mysql_select_db('test');
mysql_query('set names utf8');
$sql="select id,name from test";
$res=mysql_query($sql);
//循環(huán)取出數(shù)據(jù)
while($row=mysql_fetch_row($res))
{
echo "tr
td
inputtype='checkbox'value='{$row[0]}'name='item[]'class='ck'/
{$row[0]}
/td
td{$row[1]}/td
/tr";
}
}
?
/html
2.后臺
?php
//接收post傳來的數(shù)組
$arr=$_POST["item"];
/**
* 批量刪除
* 思路:把前臺批量選擇的數(shù)據(jù)放在數(shù)組里,刪除該數(shù)組即可
* @param $arr
* @return $res 成功or失敗
*/
functionbatch_del($arr)
{
@mysql_connect('localhost','root','');
mysql_select_db('test');
mysql_query('set names utf8');
//把數(shù)組元素組合為字符串:
$str= implode("','",$arr);
//in 表示多個
$sql="delete from test where id in('{$str}')";
$res= mysql_query($sql);
if(!$res){
echo"刪除失敗";
}else{
if(mysql_affected_rows()0){
echo"刪除成功";
}else{
echo"沒有行受到影響";
}
}
}
//調用批量刪除函數(shù)
batch_del($arr);
SCRIPT LANGUAGE="JavaScript"
!--
function quan()
{
if(document.getElementsByName("qx[]")[0].checked==false)
{
for(var i=0;idocument.getElementsByName("quanxuan[]").length;i++)
{
document.getElementsByName("quanxuan[]")[i].checked=false;
}
}
if(document.getElementsByName("qx[]")[0].checked)
{
for(var i=0;idocument.getElementsByName("quanxuan[]").length;i++)
{
document.getElementsByName("quanxuan[]")[i].checked=true;
}
}
}
//--
function xuan()
{
var a=new Array();
var i;
var c=0;
for(i=0;idocument.getElementsByName("quanxuan[]").length;i++)
{
if(document.getElementsByName("quanxuan[]")[i].checked)
{
a[c]=document.getElementsByName("quanxuan[]")[i].value;
c++;
/*alert(a);*/
}
}
if(a.length==0)
{
alert("請選擇");
}
else
{
var ss=confirm("確定刪除?");
if(ss==true)
{
location.href="shanchu.php?id="+a;
}
}
}
/SCRIPT
input type="checkbox" name="qx[]" onclick="quan();"font size="2"全選/font
a href="javascript:xuan()"選擇刪除/a
TABLE
TR
TD INPUT TYPE="checkbox" NAME="quanxuan[]" value="1"/TD
TDa/TD
/TR
TR
TD INPUT TYPE="checkbox" NAME="quanxuan[]" value="2"/TD
TDb/TD
/TR
TR
TD INPUT TYPE="checkbox" NAME="quanxuan[]" value="3"/TD
TDc/TD
/TR
TR
TD INPUT TYPE="checkbox" NAME="quanxuan[]" value="4"/TD
TDd/TD
/TR
TR
TD INPUT TYPE="checkbox" NAME="quanxuan[]" value="5"/TD
TDe/TD
/TR
/TABLE
傳值以后 在PHP頁 接值 $zhi=$_GET["a"]; 然后把 $zhi 拆分成數(shù)組
$zhi=explode(',',$zhi);
在循環(huán)刪除就可以
for($i=0;$icount($idd);$i++)
{
$con-query("delete from 表名 where ajbg_bh='$zhi[$i]'");
}
?php
//先構造SQL語句
$SQL="DELETE?FROM?a?WHERE?b='123'";//刪除a表中所有b字段值為123的記錄
$ALL="DELETE?FROM?a";//刪除a表中所有記錄
$ALL2="TRUNCATE?a";//刪除a表中所有記錄,(推薦使用)
//使用mysql_query命令執(zhí)行SQL語句,如:
mysql_query($SQL);