how to get last insert id after insert query in codeigniter active record

后端 未结 9 972
庸人自扰
庸人自扰 2020-11-28 01:59

I have an insert query (active record style) used to insert the form fields into a MySQL table. I want to get the last auto-incremented id for the insert operation as the re

9条回答
  •  臣服心动
    2020-11-28 02:20

    **Inside Model**
    function add_info($data){
       $this->db->insert('tbl_user_info',$data);
       $last_id = $this->db->insert_id();
       return  $last_id;
    }
    
    **Inside Controller**
    public function save_user_record() {
      $insertId =  $this->welcome_model->save_user_info($data);
      echo $insertId->id;
    }
    

提交回复
热议问题