Forum Moderators: coopster
First, you should get in the habit of using full php declarations. Second, if you want to include all users between 1 and 1000 you merely change your conditional expression and logical operator:
<?php
if ($user >= 0 && $user <= 1000 {
// user is between 0 and 1000, inclusive
}
?>