![]() |
Validating a UK telephone number.
Hi I am in the process of validating my post data and have come to the phone number field.
I'm not quite sure how to approach this. When I get to that part of my switch, I send it through the intval() function. This seems to take of the 0 on the beginning of the string. I decided to leave it as a string, and then use settype() just before doing my database stuff. Here is my code relating to the phone number: PHP Code:
Anyone got any suggestions on how to tackle this? Thank you for any feedback. Kind regards, LC. |
PHP Code:
from my experience people will often add spaces (even when you tell them not to)...e.g. '04033 55555' so you might be well to $input=str_replace(' ','',$input) , then check for strlen() and is_numeric(). |
Thank you very much for the explanation.
What if they start entering characters such as the hyphen (-)? I need a way so that if they enter anything but numbers it will get rid of it. I know I can add arrays to the first 2 parameters of str_replace() but it could get a little tedious for my liking. Kind regards, LC. |
good point, ok thinking about it regex is probs the way to go :)
PHP Code:
|
I use a simple str_replace for phone numbers (and credit card numbers). Takes care of spaces, dashes, periods, commas and parenthesis.
PHP Code:
|
Quote:
preg_replace(). Regular Expressions are complicated to understand. Tried using an example code someone gave the other day so thought I'd read up on it.Can't find any good documentation anywhere for detailed explanations etc. Kind regards, Lc. |
Quote:
Kind regards, LC. |
That is used before additional checking to make sure it is just numbers. Those are the most common things used when someone is entering a phone number or credit card number. After that "cleaning" additional checking is done to make sure it's the proper length and only numeric (and, in the case of a credit card number for example, whether or not it passes MOD10 check).
|
Ah ok, thank you. I will keep my str_replace() in my code and perform the additional checks.
Kind regards, LC. |
Quote:
|
That sounds perfect to me. I have just used your code in the site and it's exactly what I want without having many lines of code!
Just wish I understood RegExp! Kind regards, LC. |
Is there any particular way to deal with a drop-down list? Just wondering whether I really need a case in my switch for this as the value will always be one of the options.
Kind regards, LC. |
sorry, not with you, need more info
|
I have a list in my form:
Code:
<select name="product_options">I have 2 text areas so the only validation I perform on these 2 is making sure the user entered 400 characters or less. I was racking my brains last night thinking of a way that my list needs to be validated and to be honest I cannot think of one. The value which someone selects will always be 'default' or one of the product names i.e 'benches' or 'gates'. The only thing I can see to validate is whether or not the user selected something, in which case I need to distinguish which product it was. Sorry if it's still a little vague. Kind regards, LC. |
OK, with you now.
Like you said the user can only select from one of the dropdown boxes so in theory you can only ever get one of your pre-determined values. That said, if someone was to create a POST request to your webpage via CURL or simply from creating their own form its possible they could add their own options so you need to be aware of that. Normally you would counter that by ensuring that the POST data came from your server and assuming that ALL user input is potentially evil. You could check that the incoming product_options is one of your predetermined values or run a filter_var() or more regex to check its a string etc, in your case its probably best to check for one of your predetermined values. |
| All times are GMT +1. The time now is 03:06 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.