Trying to insert a row into my database with CodeIgniter.
My database table is Customer_Orders and the fields are CustomerName and Or
Customer_Orders
CustomerName
Or
Just insert $this->load->database(); in your model:
$this->load->database();
function order_summary_insert($data){ $this->load->database(); $this->db->insert('Customer_Orders',$data); }