Welcome Guest, Not a member yet? Register   Sign In
Full name validation in codeigniter
#4

[eluser]Sanjay Sarvaiya[/eluser]
I think you have not read user guide Every things are described on it.
in your case your call back function will be shaw in bellowed Example.
may this help you.
Code:
//set your validation rules
$this->form_validation->set_rules('name', 'Full Name', 'callback_space_check');

your call back function will be like...
public function space_check($str) {
   $pos = strrpos($str, " ");
   if ($pos === false) { // note: three equal signs
    // not found...
    $this->form_validation->set_message('space_check', 'The %s field can not contain SPACE BTW First name and Last Name');
    return FALSE;
  }
  else  {
    return true;
  }
}


Messages In This Thread
Full name validation in codeigniter - by El Forum - 09-05-2012, 10:26 PM
Full name validation in codeigniter - by El Forum - 09-05-2012, 10:52 PM
Full name validation in codeigniter - by El Forum - 09-08-2012, 12:56 AM
Full name validation in codeigniter - by El Forum - 09-08-2012, 01:34 AM



Theme © iAndrew 2016 - Forum software by © MyBB