HDFilmMaker2112 Posted November 20, 2011 Share Posted November 20, 2011 Just looking to know if this is the proper way to implement this: I need the below if to be true when any number between 100 and 1000 is the value of x, including say "105.55" if($x>= 100 && $x <= 1000){ } Basically I'm asking will a value of x with a decimal in it not cause the if statement to be true. Link to comment https://forums.phpfreaks.com/topic/251463-if-statement-numbers-in-a-range-with-decimals/ Share on other sites More sharing options...
Fadion Posted November 20, 2011 Share Posted November 20, 2011 Why not try it in the first place? <?php $x = 105.55; if ($x >= 100 && $x <= 1000) { echo 'x is within range'; } ?> Be it an integer or a float, if it's within the range, it will return true. Dead simple! Link to comment https://forums.phpfreaks.com/topic/251463-if-statement-numbers-in-a-range-with-decimals/#findComment-1289650 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.