Click to See Complete Forum and Search --> : [RESOLVED] how to validate decimal number input


ssffcc
05-17-2006, 11:16 AM
hi, I have a input field "Milage", which might be either integer or decimal numbers, please help me validate the input

schizo
05-17-2006, 12:20 PM
I usually use the is_numeric (http://www.php.net/manual/en/function.is-numeric.php) method to help validate this type of input.

ssffcc
05-17-2006, 12:47 PM
problem solved, thx schizo :)