how would i do this code below i wont it to be higher than 0 but less than 6
$result = mysql_query("SELECT * FROM `grpgusers` WHERE `admin` > 0 BUT < 6 ORDER BY `id` DESC");
If it is an integer:
. . . WHERE `admin` BETWEEN 1 AND 5 . . .
Otherwise (or instead):
. . . WHERE `admin` > 0 AND `admin` < 6 . . .