Answer the question
In order to leave comments, you need to log in
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
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');
}
<input type="text" name="login" value="" />
<input type="text" name="passowrd" value="" />
<input type="text" name="email" value="" />
<input type="text" name="age" value="" />
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question