php range from one
($min <= $value) && ($value <= $max)
Here is what the above code is Doing:
1. We're creating a function called "is_between" that takes three arguments:
a. "value"
b. "min"
c. "max"
2. We're creating a variable called "result" that is equal to the boolean expression:
a. ($min <= $value) && ($value <= $max)
3. We're returning the value of "result"