【发布时间】:2011-07-08 09:15:39
【问题描述】:
我的问题是关于使用 CodeIgniter Active 记录插入数据。指南上有一个使用数组插入数据的示例:
$data = array(
'title' => 'My title' ,
'name' => 'My Name' ,
'date' => 'My date'
);
$this->db->insert('mytable', $data);
我想知道是否有其他方法可以插入活动记录数据,例如在类似的语法中:
$this -> db -> select (*);
$this -> db -> from ('users');
$this -> db -> where('id', $id);
$this -> db -> limit(1);
$query = $this->db->get();
谢谢。
【问题讨论】:
标签: php mysql codeigniter insert