Possible Duplicate:
What's the correct way to test if a variable is a number in PHP?
I have two variables coming in from a form:
$minNo = mysql_real_escape_string($_GET["minNo"]);
$maxNo = mysql_real_escape_string($_GET["maxNo"]);
How can I check whether they are numerical values or not?