列清單的代碼不正確,沒有把編號作為參數(shù)傳遞給刪除的PHP程序,修改如下:
創(chuàng)新互聯(lián)專注于遼寧企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,成都做商城網(wǎng)站。遼寧網(wǎng)站建設(shè)公司,為遼寧等地區(qū)提供建站服務(wù)。全流程專業(yè)公司,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
?php
while(list($id,$content,$date)=$stmt-fetch(PDO::FETCH_NUM))
{
echo?"tr
td$id/td
td$content/td
td$date/td
tda?href='ed.php?id=$id'編輯/a
a?href='del.php?id=$id'刪除/a/td
/tr";
}
刪除的文件有的小的修改,把判斷if(isset($_get['sc']))取消,只需要判斷參數(shù)id既可,這樣:
$id=$_GET['id'];
if($id!=''){
....執(zhí)行delete....
}
1:這行代碼代替你的刪除代碼:echo "a href='del.php?id=."$row['sysuser_id']".'刪除/a";
2:建一個名為del.php文件,在里面寫刪除功能
?php
$id = $_GET['id'];//獲取要刪除的ID
//把你的鏈接數(shù)據(jù)庫代碼寫這里
$result = mysql_query("delete from sysuser where sysuser_id = {$id}");
if($result){
echo "刪除成功";
}else{
echo "刪除失敗";
}
?php
if(isset($_GET['id'])!empty($_GET['id'])){
$id=intval($_GET['id']);
$sql="delete from jxkc_a1 where id = $id";
if(mysql_query($sql)){
echo "script type='text/javascript'alert('操作成功')/script";
}else{
echo "script type='text/javascript'alert('操作失敗')/script";
}
}
?
?php
$arr = mysql_query("select * from jxkc_a1 where username='$username' order by id desc" );
while($result = mysql_fetch_array($arr))
{?
tr
tdspan class="STYLE9" ?php echo $result["lesson"];? /td
tdspan class="STYLE9" ?php echo $result["plantime"];? /td
tdspan class="STYLE9" ?php echo $result["student"];? /td
tdspan class="STYLE9" ?php echo $result["classtime"];? /td
tdspan class="STYLE9" ?php echo $result["type"];? /td
tda href=(這里假設(shè)你的地址是./list.php)"./list.php?id=?php echo $result["id"] ?" onclick=".......js"刪除/a/td
/tr?php } ?
文章題目:刪除按鈕數(shù)據(jù)庫php 刪除控件按鈕
分享路徑:http://jinyejixie.com/article20/dodhcco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、軟件開發(fā)、網(wǎng)站改版、網(wǎng)站營銷、品牌網(wǎng)站設(shè)計、微信公眾號
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)