Trying to insert a row into my database with CodeIgniter.
My database table is Customer_Orders
and the fields are CustomerName
and OrderLines
. The variables are being submitted correctly.
My Controller is( sales.php
):
function new_blank_order_summary()
{
$data = array(
'OrderLines'=>$this->input->post('orderlines'),
'CustomerName'=>$this->input->post('customer')
);
$this->sales_model->order_summary_insert($data);
$this->load->view('sales/new_blank_order_summary');
}
My Model is( sales_model.php
):
function order_summary_insert($data){
$this->db->insert('Customer_Orders',$data);
}
Whilst the view loads correctly, no data is inserted into the database.
Any ideas as to why not?
See Question&Answers more detail:os