I have validated my form in such a way that it ain't submitting the data unless the contact field has something else without 11 numeric values. But now I need such phone number validation in Codeigniter that the input field doesn't even let me to type a single character if that is not a number. Can anyone help me with that?
Asked
Active
Viewed 2,943 times
0
-
1Possible duplicate of [Phone number validation in php codeigniter](https://stackoverflow.com/questions/10838804/phone-number-validation-in-php-codeigniter) – Raymond Nijland Jun 16 '17 at 15:14
-
1You can do it with form_validation or if you have a regular expression you can add it by extending the class form_validation – elddenmedio Jun 16 '17 at 15:14
1 Answers
1
What you're looking for is jquery plugin which restricts user input to digits only.
This is plugin - http://www.texotela.co.uk/code/jquery/numeric/

Ganesh
- 3,128
- 2
- 17
- 27
-
1
-
Nowadays, the link you provided in your answer is broken. The updated URL maybe what follows: https://github.com/SamWM/jquery-numeric – Serge Kishiko Oct 20 '19 at 02:40