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

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

php同時(shí)刪除多條數(shù)據(jù)的簡單介紹

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

sample?code:

創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括海北州網(wǎng)站建設(shè)、海北州網(wǎng)站制作、海北州網(wǎng)頁制作以及海北州網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,海北州網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到海北州省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

?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復(fù)選框選中幾條數(shù)據(jù)同時(shí)刪除

代碼有點(diǎn)問題,應(yīng)該是input type="checkbox" name="cp_id[]" value="$row['cp_id']"

刪除可以不用循環(huán),像下面這樣

if(!empty($_POST['cp_id']))

{

$str = explode(",",$_POST['cp_id']);

$sql = "DELETE FROM 表名 WHERE 字段 IN(${str})";

}

thinkphp5數(shù)據(jù)庫怎么批量刪除

thinkphp5數(shù)據(jù)庫怎么批量刪除

// 以下方法供參考

$id = 3;

// 1、如果id是主鍵,且Mysql數(shù)據(jù)庫

$new -delete($id);

// 2、用表示篩選條件的數(shù)組$map

$map["id"]=$id;

$new -where($map)-delete();

// 3、如果id是主鍵

$new -delete($map);

// 4、直接用數(shù)組

$new -where(array("id"=$id))-delete();

// 5、刪除多條1,3,5,6,8

$ids = array(1,3,5,6,8);

$maps["id"] = array("in",$ids); // 或者 $maps["id"] = array("in","1,3,5,6,8");

$new -where($maps)-delete();


分享標(biāo)題:php同時(shí)刪除多條數(shù)據(jù)的簡單介紹
網(wǎng)站URL:http://weahome.cn/article/hcegec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部