hi i am using codeigniter form validation .
in my libraray i set the form validation
$this->ci->form_validation->set_rules ( 'businessemail', 'Business Email', 'required|xss_clean|min_length[6]|callback_valid_email_check' );
and my valid_email_check function
public function valid_email_check($email_address)
{
if(!trim($email_address))
{
return TRUE;
}
$email_explode = explode("@", $email_address);
$valid = preg_match("/^(?![_.])(?!.*[_.]{2})[a-zA-Z0-9._]+(?<![_.])$/",trim($email_explode[0]));
if(!$valid)
{
$this->ci->form_validation->set_message('valid_email_check', 'The %s field contains invalid charaters');
return FALSE;
}
else
{
return TRUE;
}
}
the thing is
required|xss_clean|min_length[6]
is validating correctly , only thing the custom validation message is not working .
what have i done here , i think using CI , may be the issue ,
how to solve this problem , thanks in advance