V
V
vvmgev2015-10-03 13:54:57
CodeIgniter
vvmgev, 2015-10-03 13:54:57

How to fix error in codeigniter?

when adding an entry to the database
You must use the "set" method to update an entry.

public function regstrAuth(){


    $this->input->post('login');
    $this->input->post('passowrd');
    $this->input->post('email');
    $this->input->post('age');

    $this->db->insert('users',$this);


  }

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
littleguga, 2015-10-03
@vvmgev

Try like this:

public function regstrAuth()

    // 'book_name' would be the name of your column in database table

    $data = array(
    'login' => $this->input->post('login'),
    'passowrd' => $this->input->post('passowrd'),
    'email' => $this->input->post('email'),
    'age' => $this->input->post('age')
    );

    $this->db->set($data);
    $this->db->insert('users');

}

The form should be like this:
<input type="text" name="login" value="" />
<input type="text" name="passowrd" value="" />
<input type="text" name="email" value="" />
<input type="text" name="age" value="" />

And are you sure it's passowrd and not password? No typos?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question