Welcome Guest, Not a member yet? Register   Sign In
Loading the form and validating in the same function?
#6

[eluser]mattpointblank[/eluser]
Try swapping your controller code to this:

Code:
if ($this->form_validation->run() == FALSE)
    $this->form_validation->set_rules('email', 'email', 'required|valid_email');
    $this->form_validation->set_rules('name', 'name', 'required|xss_clean');
    $this->form_validation->set_rules('message', 'message', 'required|xss_clean');
    $this->form_validation->set_rules('phone', 'phone', 'required|numeric');
    $this->form_validation->set_rules('phone', 'phone', 'required|numeric');
    $this->form_validation->set_rules('recaptcha_response_field', 'lang:recaptcha_field_name', 'required|callback_check_captcha');
    $data['captcha'] = $this->recaptcha->get_html();
    $this->load->view('contact', $data);
} else {
    $this->load->view('success.php');
}


Messages In This Thread
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 08:40 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 08:45 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 08:57 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 09:05 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 09:09 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 09:10 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 09:45 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 10:18 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 10:42 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 11:40 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 11:58 AM
Loading the form and validating in the same function? - by El Forum - 04-29-2010, 04:26 PM
Loading the form and validating in the same function? - by El Forum - 04-30-2010, 12:50 AM
Loading the form and validating in the same function? - by El Forum - 04-30-2010, 03:32 PM
Loading the form and validating in the same function? - by El Forum - 04-30-2010, 10:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB