gpt4 book ai didi

php - 如何在Codeigniter中通过id删除记录

转载 作者:行者123 更新时间:2023-11-29 16:39:23 24 4
gpt4 key购买 nike

我正在创建一个函数来删除 Codeigniter 中的记录,但它无法正常工作。

这是我在 properties_list 上的按钮

 <th>
<div><a title="Delete" class="delete btn btn-sm btn-danger pull-right '.$disabled.'" data-href="'.base_url('admin/properties/del/'.$row['id']).'" data-toggle="modal" data-target="#confirm-delete"> <i class="material-icons">delete</i></a></div>
</th>

我的 Controller 上的 DELETE 函数 Properties_php

  public function del($id = 0){
$this->db->delete('ci_properties', array('propertie_id' => $id));
$this->session->set_flashdata('msg', 'Imóvel removido!');
redirect(base_url('admin/properties'));
}

enter image description here

最佳答案

试试这个:

<a title="Delete" class="delete btn btn-sm btn-danger pull-right '.$disabled.'" data-href="<?php echo base_url('admin/properties/del/'.$row['id']);?>" data-toggle="modal" data-target="#confirm-delete"> <i class="material-icons">delete</i></a>

关于php - 如何在Codeigniter中通过id删除记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53422427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com