亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

會(huì)員刪除

會(huì)員刪除,需要接受刪除的id,所以需要對刪除按鈕進(jìn)行修改1.發(fā)送id.png

在控制器中編寫代碼

2.編寫png.png

3.png

4.png

5.png

ApplicationAdminControllerAdminController.class.php

 //用戶刪除
     public function del(){
        $admin=D('Admin');
        if($admin->delete(I('id'))){
            $this->success('刪除管理員成功!');
        }else{
            $this->error('刪除管理員失敗!');
        }
    }


繼續(xù)學(xué)習(xí)
||
//用戶刪除 public function del(){ $admin=D('Admin'); if($admin->delete(I('id'))){ $this->success('刪除管理員成功!'); }else{ $this->error('刪除管理員失?。?); } }
提交重置代碼