Welcome Guest, Not a member yet? Register   Sign In
validation php error with falidation fails
#7

[eluser]allibubba[/eluser]
Nikhil, thanks for the suggestion, updated my code, but no luck.

dbashyal, yeah, i caught that after i posted. i've since commented out all validation except for my first field;
Code:
$data['name'] = "required|min_length[5]|max_length[125]";

now, i can submit fine if i meet those requirements, (5 to 125 characters). but if i fail my validation i still get that php error. starting to wonder if it is normal and if i had error reporting off i would not have the problem, but that doesn't seem right either, if validation fails i should just return to my registration form with error messages displayed, right?

here's my failure statement;
Code:
//set validation error output
$this->validation->set_error_delimiters('<p class="error">', '</p>');
if ($this->validation->run() == FALSE){
// load layout        
  $this->layout->defaultLayout('contact_page.php',$data);
}else{
  $this->db->insert('users', $_POST);
  //redirect after submitting
  redirect('contact/register_success');
}


Messages In This Thread
validation php error with falidation fails - by El Forum - 06-14-2008, 04:29 PM
validation php error with falidation fails - by El Forum - 06-14-2008, 04:38 PM
validation php error with falidation fails - by El Forum - 06-14-2008, 05:51 PM
validation php error with falidation fails - by El Forum - 06-15-2008, 10:48 PM
validation php error with falidation fails - by El Forum - 06-15-2008, 11:52 PM
validation php error with falidation fails - by El Forum - 06-16-2008, 02:15 AM
validation php error with falidation fails - by El Forum - 06-16-2008, 08:23 AM
validation php error with falidation fails - by El Forum - 06-16-2008, 09:00 AM
validation php error with falidation fails - by El Forum - 06-16-2008, 10:31 AM
validation php error with falidation fails - by El Forum - 06-16-2008, 09:57 PM
validation php error with falidation fails - by El Forum - 06-17-2008, 02:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB