PHP/Data Type/ctype digit
Validating a number with ctype_digit()
<?php
if (! ctype_digit($_POST["age"])) {
print "Your age must be a number bigger than or equal to zero.";
}
?>
<?php
if (! ctype_digit($_POST["age"])) {
print "Your age must be a number bigger than or equal to zero.";
}
?>