insert data into database with codeigniter

后端 未结 9 794
臣服心动
臣服心动 2020-12-06 02:18

Trying to insert a row into my database with CodeIgniter.

My database table is Customer_Orders and the fields are CustomerName and Or

9条回答
  •  借酒劲吻你
    2020-12-06 02:32

    function saveProfile(){
        $firstname = $this->input->post('firstname');
        $lastname = $this->input->post('lastname');
        $post_data = array('firstname'=> $firstname,'lastname'=>$lastname);
        $this->db->insert('posts',$post_data);
        return $this->db->insert_id(); 
    }
    

提交回复
热议问题