I am in need of some software, database or coding to check phone numbers which are entered into a form. These check is to verify that number exists etc.
I don't think you can verify if a number exists. You can, howver, make sure that was is entered is a valid number (and not just random characters). By valid, I leam formatted correctly. This can be done using Regular Expressions.
I agree with Foobar that you can't check to see if the actaully is hooked up. You can only check to see if it is valid.
I would suggest client side checking rather than server side as it saves server time.
I'd use some JavaScript functions. With 3 or possibly 4 html textboxes (1 for areacode, 1 for the prefix and 1 for the suffix, maybe one for extention) You'd just need to check if they're numeric.
Personaly I would stay away from client side scripting as there are a few users who turn off JavaScript. Something like the regex above would not put that much of a strain on the server to be of any significant difference.