我使用笨,我有我的表中插入一個ID,但它不工作,我做了這個:笨,插入ID
$this->db->insert('mytable', $data);
$id = $this->db->insert_id();
我使用笨,我有我的表中插入一個ID,但它不工作,我做了這個:笨,插入ID
$this->db->insert('mytable', $data);
$id = $this->db->insert_id();
這正常工作對我來說:
function insert($data){
$this->db->insert('users',$data);
return $this->db->insert_id();
}
你有你的ID
字段設置爲AUTO INCREMENT
,並確保$data is an associative array
,如:
$data = array(
'db_field'=>'value'
);
你有配置表有一個主鍵,自動增量? – Rooster 2013-03-21 17:01:23
您是否可以更新您的問題以包含$ data的值。 – 2013-03-21 17:26:15