Jump to content

less than 1-4 conditonal statement help


calmchess

Recommended Posts

You do realize that the first 1 through 4 will counteract anything else. As nothing else would "mount to true".

 

If $var is between 1 and 4 is not going to be 0 or greater than 750...Basically you only need the greater than 1 and the less than 4.

  Quote
if a number is between 1-4 but not 0 and not greater than 750

 

Would if a number is between 1 and 4 automatically knock the other 2 qualifications out?

 

If the number is 0, its not between 1 and 4, and if the number is 3, 3 isn't greater than 750, lol

 

By the way, if you check if that number is between 1 and 4, including 1 and 4:

if($var >= 1 && $var <=4)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.