真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php批量刪除所有數(shù)據(jù) php刪除語句代碼

php如何操作才能批量刪除數(shù)據(jù)庫的數(shù)據(jù)

sample?code:

成都創(chuàng)新互聯(lián)自2013年創(chuàng)立以來,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元于洪做網(wǎng)站,已為上家服務(wù),為于洪各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108

?php?

if($del_id!=""){?

$del_num=count($del_id);?

for($i=0;$i$del_num;$i++){?

mysql_query("Delete?from?news?where?id='$del_id[$i]'");?

}??

echo("script?type='text/javascript'alert('刪除成功!');history.back();/script");?

}else{?

echo("script?type='text/javascript'alert('請(qǐng)先選擇項(xiàng)目!');history.back();/script");?

}?

?

PHP怎么實(shí)現(xiàn)批量刪除 實(shí)現(xiàn)批量刪除的代碼

1.前臺(tái)

!DOCTYPE html

html

head

title批量刪除/title

/head

body

scripttype="text/javascript"

//復(fù)選框

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

!-- 此處調(diào)用顯示列表函數(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.后臺(tái)

?php

//接收post傳來的數(shù)組

$arr=$_POST["item"];

/**

* 批量刪除

* 思路:把前臺(tái)批量選擇的數(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 表示多個(gè)

$sql="delete from test where id in('{$str}')";

$res= mysql_query($sql);

if(!$res){

echo"刪除失敗";

}else{

if(mysql_affected_rows()0){

echo"刪除成功";

}else{

echo"沒有行受到影響";

}

}

}

//調(diào)用批量刪除函數(shù)

batch_del($arr);

PHP中怎么批量刪除數(shù)據(jù)表中的數(shù)據(jù)

?php

//先構(gòu)造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);


本文標(biāo)題:php批量刪除所有數(shù)據(jù) php刪除語句代碼
文章出自:http://weahome.cn/article/ddosjgp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部