Help for this page

Select Code to Download


  1. or download this
    if ($min < $x < $max) { ... }
    
  2. or download this
    # not this
    if (($min < $x) < $max) {...}
    ...
    
    # but this
    if ($min < $x && $x < $max) {...}