Welcome Guest, Not a member yet? Register   Sign In
Update database
#2

[eluser]njkt[/eluser]
Code:
function update($id) {
        $data = array(
          ' title' => $this->input->post('title'),
            'slug' => $this->input->post('slug'),
            'intro' => $this->input->post('intro'),
            'text' => $this->input->post('text'),
        );
        $this->db->where('id', $id);
       [b] $this->db->update('news', array('id' => $id));[/b]
    }

This function doesn't actually update, you forgot to pass $data.


Messages In This Thread
Update database - by El Forum - 06-14-2012, 11:33 PM
Update database - by El Forum - 06-14-2012, 11:41 PM
Update database - by El Forum - 06-14-2012, 11:49 PM
Update database - by El Forum - 06-15-2012, 12:21 AM
Update database - by El Forum - 06-15-2012, 12:34 AM
Update database - by El Forum - 06-15-2012, 12:44 AM
Update database - by El Forum - 06-16-2012, 05:54 PM



Theme © iAndrew 2016 - Forum software by © MyBB