Welcome Guest, Not a member yet? Register   Sign In
"Unable to load the requested class: form_validation"
#1

[eluser]Bl4cKWid0w[/eluser]
I'm trying to use the form validation class, however, it doesn't seem to be working correctly. This is my code:

Code:
$this->load->helper('form');
           $this->load->library('form_validation');
      $this->form_validation->set_rules('clanName', 'Clan Name', 'required|callback_clanname_check|min_length[5]|max_length[50]');
      $this->form_validation->set_rules('clanMotto', 'Motto', 'required|min_length[5]|maxlength[250]');
      $this->form_validation->set_rules('clanEmail', 'Email', 'required|valid_email');
      
      if($this->form_validation->run() == FALSE){
        $this->load->view('ladders_join', $data);
      } else {
        $this->load->view('ladders_joined');
      }


Messages In This Thread
"Unable to load the requested class: form_validation" - by El Forum - 10-29-2008, 11:42 PM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 04:23 AM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 08:12 AM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 08:16 AM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 08:18 AM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 09:05 AM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 12:09 PM
"Unable to load the requested class: form_validation" - by El Forum - 10-30-2008, 11:51 PM
"Unable to load the requested class: form_validation" - by El Forum - 11-03-2008, 10:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB