[eluser]DADE[/eluser]
Hello everybody,
I have one small problem.
I have form:
Code:
Login
<input type="text" name="login">
Password
<input type="password" name="password" /> <input type="password" name="passwordcheck" />
Problem:
Code:
$this->db->insert('users', $_POST);
I don't need to insert any information from "passwordcheck" field, just to check if it's similar with "password". How I can ignore this input (passwordcheck) while I'm inserting information from other fields.
Thanks.
P.S: Sorry for my english.