PDA

View Full Version : Phone Numbers


DrInternet
03-04-2013, 09:14 PM
hello i need to add a required field in users profile / and apon registration

i have added these but i need to make the phone number field only numbers to be written in

how can i make that ? please

thank you

Reycer
03-04-2013, 11:30 PM
<a href="http://www.vbulletin.com/docs/html/main/profile_add_single_line" target="_blank">http://www.vbulletin.com/docs/html/m...dd_single_line</a>

Regular Expression - Expressions allow you to filter the data you allow the user to input in the field. Regex can be rather complicated so ask for assistance if you have trouble getting this to work properly. For example, the following regex would only accept a number in the range of 1 to 50: ^([1-9]$|[1-4][0-9]|50)$

The following regex would only accept a 7 or 8 digit number:
^([0-9]{7,8})$