What’s a good way to validate phone numbers being input in codeigniter?
It’s my first time writing an app, and I don’t really understand regex at all.
Is it easier to have three input fields for the phone number?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here’s a cool regex I found out on the web. It validates a number in almost any US format and converts it to (xxx) xxx-xxxx. I think it’s great because then people can enter any 10 digit US phone number using whatever format they are used to using and you get a correctly formatted number out of it.
Here’s the whole function you can drop into your MY_form_validation class. I wanted my form to allow empty fields so you’ll have to alter it if you want to force a value.