Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] $this->db->insert() adds all global fields from controller
#7

[eluser]yarinb[/eluser]
Isn't that what I'm doing here?
Code:
function submit_add() {
        $user = new User_Model();
        $user->user_name = $this->input->post('user_name');
        $user->real_name = $this->input->post('real_name');
        $user->role_id = $this->input->post('role_id');
        
        $this->db->insert('user', $user);
    
        // go to success message
        redirect('user');
    }

User_Model class has only the fields which I need...

EDIT: just saw your edit Smile we're to fast Smile


Messages In This Thread
[SOLVED] $this->db->insert() adds all global fields from controller - by El Forum - 07-14-2008, 07:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB