I am new in codeigniter please help me to find the error!!!! my mobile number field is not validating incodeigniter.
$this->form_validation->set_rules('mobilenumber', 'Mobile Number', 'required|regex_match[/(7|8|9)\d{9}/]');
I am new in codeigniter please help me to find the error!!!! my mobile number field is not validating incodeigniter.
$this->form_validation->set_rules('mobilenumber', 'Mobile Number', 'required|regex_match[/(7|8|9)\d{9}/]');
$this->form_validation->set_rules('mobile', 'Mobile Number ', 'required|regex_match[/^[0-9]{10}$/]');
{10} for 10 digits number use this one hope it will work for you.