insert data into database with codeigniter

后端 未结 9 791
臣服心动
臣服心动 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:35

    Just insert $this->load->database(); in your model:

    function order_summary_insert($data){
        $this->load->database();
        $this->db->insert('Customer_Orders',$data);
    }
    

提交回复
热议问题