-2

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}/]');
Sageth
  • 1,102
  • 1
  • 15
  • 30

1 Answers1

1
$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.

Sageth
  • 1,102
  • 1
  • 15
  • 30
Atul Singh
  • 11
  • 3
  • https://stackoverflow.com/questions/2113908/what-regular-expression-will-match-valid-international-phone-numbers or you can try this one.. – Atul Singh Nov 09 '17 at 11:56