Question:
I want to make the Admins level 500 and users 300
In the functions.php, is this the place to change it, or is it someplace else??
function checkAdminLogin() {
$result = mysql_query("SELECT * FROM accounts WHERE username = '$U' and password = '$P' and accesslevel = '500'");
}
function checkUserLogin() {
$result = mysql_query("SELECT * FROM accounts WHERE username = '$U' and password = '$P' and accesslevel = '300'");
}
A thought, maybe make the levels configurable in the config file? Just my thoughts. Keep up the great work!