I want to make a bid system on a website. That means users can post their bid (natural number). I want to make sure users don\'t try to post characters, decimal numbers, etc
simple function:
function isnature($x){ $y = ceil($x)-floor($x); return $y == 0 ? true : false; }