在codeigniter中创建简单删除的任何人。帮助我!。 这是我的看法
<a href="<?php echo base_url(); ?>home/del/<?php echo $row->id; ?>">Delete</a>
帮我在codeigniter中创建一个简单的删除数据。
答案 0 :(得分:0)
你可以这样做 控制器
Class Home Extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->model('mymodel');
}
function index()
{
//blah blah
}
function del()
{
$id = $this->uri->segment(3);
$this->mymodel->delete($id);
redirect('home/index');
}
}
模型
Class Mymodel Extends CI_Model
{
function __construct()
{
parent::__construct();
}
function delete($id)
{
$this->db->where('id',$id);
$this->db->delete('tablename');
}
}