This works fine:
$developer_query = mysql_query("SELECT * FROM accounts WHERE level<='2'");
However, that will include all information in table.level 0, 1, 2 ... i want to EXCLUDE 1 ... i have tried:
$developer_query = mysql_query("SELECT * FROM accounts WHERE level='2' AND level='0'");
however, we all know that that wont work... how can i make it so it only select 0 and 2, without having to run multiple strings? thanks 😉
Phill