Welcome Guest, Not a member yet? Register   Sign In
Database Update Question
#1

[eluser]ehalber[/eluser]
Currently, I'm using a hidden form field to capture the id of the database record I want to update. Next I save the post vars in my controller and send them to my model. Is this the standard way to perform this operation? Are there alternative ways, better ways?

Code from controller
Code:
function update_news()
{

    $update_info = array(
                        'article' => $this->input->post('article'),
                        'order_date' => $this->input->post('order_date'),
                        'date' => $this->input->post('date')
                       );
  
    $id = $this->input->post('id');
  
    $this->Drift_model->update_entry($id, $update_info);

    redirect('admin/control_panel');
}

Code from model
Code:
function update_entry($id, $update_info)
{  
    $query = $this->db->update('news', $update_info, array('id' => $id));    
}

Thanks


Messages In This Thread
Database Update Question - by El Forum - 12-12-2007, 10:51 AM
Database Update Question - by El Forum - 12-12-2007, 10:58 AM
Database Update Question - by El Forum - 12-12-2007, 11:13 AM
Database Update Question - by El Forum - 12-12-2007, 11:14 AM
Database Update Question - by El Forum - 12-12-2007, 11:40 AM
Database Update Question - by El Forum - 12-12-2007, 11:45 AM
Database Update Question - by El Forum - 12-12-2007, 11:52 AM
Database Update Question - by El Forum - 12-12-2007, 11:54 AM
Database Update Question - by El Forum - 12-12-2007, 12:04 PM
Database Update Question - by El Forum - 12-12-2007, 12:31 PM
Database Update Question - by El Forum - 12-12-2007, 12:36 PM
Database Update Question - by El Forum - 12-12-2007, 01:24 PM
Database Update Question - by El Forum - 12-12-2007, 01:44 PM
Database Update Question - by El Forum - 12-12-2007, 01:56 PM
Database Update Question - by El Forum - 12-12-2007, 02:05 PM
Database Update Question - by El Forum - 12-12-2007, 02:29 PM
Database Update Question - by El Forum - 12-12-2007, 02:36 PM
Database Update Question - by El Forum - 12-12-2007, 05:58 PM
Database Update Question - by El Forum - 12-12-2007, 07:02 PM



Theme © iAndrew 2016 - Forum software by © MyBB