Код: Выделить всё
$this->db->trans_start();
$this->db->insert($this->table, $data);
$prodId = $this->db->insert_id();
$this->db->from('tmp_prod_icms');
$this->db->where('CADKEY', $this->session->userdata('key'));
$tmpICMS = $this->db->get()->result();
foreach ($tmpICMS as $r) { // loop over results
$r["CADPROCOD"] = $prodId;
$this->db->insert('prod_icms', $r);
}
$this->db->trans_complete();
Подробнее здесь: https://stackoverflow.com/questions/393 ... ult-method
Мобильная версия