I have an issue regarding a login section of a website, when a user is registered they are given a user_permission, this is defaulted to 0 for a general user or 1 for an admin.
The issue I am having is when the user logs in I want the code to check what that user permission is and if its 0 redirect the user to the userpage, and if its 1 redirect the user to the admin page
At the moement whoever logs in is directed towards the user page, any help would be greatly appreciated!
$query = "SELECT * FROM ecc_users WHERE user_email='$user_email' and user_password='$user_password'";
$permis = "SELECT user_permissions FROM ecc_users";
$result = mysql_query($query, $db);
$result2 = mysql_query($permis, $db);
if(mysql_num_rows($result)) {
$user_permissions = 0;
$_SESSION['loggedin'] = 1;
header('Location:userpage.php');
exit(); }
elseif($result2){
$user_permissions = 1;
echo "<script>window.location='admin.php'</script>";
die();
}
else {
header('Location:login.php?error=1');
exit(); }
this is the code I have for this particular section, I have worked out that there is something within the if statements that must be wrong?