我无法使用codeigneter

时间:2016-01-09 21:21:41

标签: php mysql codeigniter

我无法使用codeigniter从MySQL删除。

我的控制器:

public function delete($id)
{
    $this->load->model('dele');
    $this->dele->delettest($id);                   
}

和我的模特:

    $this->db->where('id', $id);
    $this->db->delete('table');

但记录不会被删除。

1 个答案:

答案 0 :(得分:1)

没有模特。尝试在你的控制器中执行此操作:

public function delete($id) { 
$this->db->delete('your_table', array('id' => $id)); //pass here the array with $id
}
/*
It will produce:
DELETE FROM your_table
WHERE id=1;
*/