I am validating phone number with codeigniter
In my city, I apply the rule like this:
$this->form_validation->set_rules('voter_phone', 'Phone number', 'required|exact_length[8]|integer');
however, since my city doesn't have the 1 or 4 for the first character , I would like to know are there any way to add checking for this rule? Thanks for helping
Reference: http://cimple.org/user_guide/libraries/validation.html