|
如题
$where = "id_threads = ".$this->input->post('id_threads');
$data = array(
'f_important' => $this->input->post('f_important')
);
$this->db->update('Top.memo_grp', $data, $where);
$chk = $this->db->affected_rows();
$data = array(
'memo' => $this->input->post('memo')
);
$this->db->update('Top.memo_posts', $data, $where);
$chk += $this->db->affected_rows();
用 WHERE 判断 要更新的 数据的时候 应该 怎么写?$this->db->update 我感觉这句写错了~
|
|