Welcome Guest, Not a member yet? Register   Sign In
Simple Inserting Form Data into DB
#2

[eluser]InsiteFX[/eluser]
Code:
// Controller
public function insert()
{
    $data = array(
        'username' => $this->input->post('username', TRUE),
        'password' => sha1($this->input->post('password', TRUE)
    );

    $this->Inserting_model->insertdata($data); // this should forward them to the Model
}

// MODEL
public function insertdata($data)
{
    $this->db->insert('users', $data);
}

// form_open
<?php echo form_open('inserting_controller/insert'); ?>


Messages In This Thread
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 10:11 AM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 10:25 AM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 11:04 AM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 11:38 AM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 12:40 PM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 12:52 PM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 01:00 PM
Simple Inserting Form Data into DB - by El Forum - 07-06-2012, 01:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB