Welcome Guest, Not a member yet? Register   Sign In
insert data into 2 table
#2

(This post was last modified: 12-27-2016, 09:49 PM by suhindra.)

In order to insert the primary key of table diskon into table diskon_tunai, codeIgniter has built in helper functions to help with this task.
PHP Code:
//prepare data for table diskon    
$data = array(
  'content' => 'My content',
);
//insert into table diskon
$this->db->insert('diskon',$data);

//prepare data for table diskon_tunai
$data = array(
  'id_diskon' => $this->db->insert_id(),
);
//insert into table diskon_tunai
$this->db->insert('diskon_tunai',$data); 
Reply


Messages In This Thread
insert data into 2 table - by zembarekosaputra - 12-27-2016, 05:49 AM
RE: insert data into 2 table - by suhindra - 12-27-2016, 09:48 PM



Theme © iAndrew 2016 - Forum software by © MyBB