Help for this page
if ($min < $x < $max) { ... }
# not this if (($min < $x) < $max) {...} ... # but this if ($min < $x && $x < $max) {...}