Jump to content

[SOLVED] If statement wrong


Asheeown

Recommended Posts

[code]
if(!$_SESSION['LoggedIn']) {
echo "<p><strong>Sorry you must be logged in to view this page.</strong></p>";
die();
} elseif($_SESSION['UserGroup'] > "1") {
echo "<p><strong>Sorry you have insufficient privileges to view this page, if you feel this information is incorrect please contact the administrator.</strong></p>";
die();
}[/code]

Now the LoggedIn Session part works, however when I am logged in it says my permissions are not sufficient which is incorrect I even "echoed" the session out right before the die command and it came up as 2
Link to comment
Share on other sites

I made it into one so it's more efficient:

[code]
if(!$_SESSION['LoggedIn'] && $_SESSION['UserGroup'] > 1) {
echo "<p><strong>Sorry you have insufficient privileges to view this page, if you feel this information is incorrect please contact the administrator.</strong></p>";
die();
}[/code]

$_SESSION['LoggedIn'] = 1 and $_SESSION['UserGroup'] = 2
Now it just doesnt work
Link to comment
Share on other sites

try this ok

[code]

<?php

if( (!$_SESSION['LoggedIn'] )&& (!$_SESSION['UserGroup'] > 1) ) {
echo "<p><strong>Sorry you have insufficient privileges to view this page, if you feel this information is incorrect please contact the administrator.</strong></p>";
die();
}

?>
[/code]
Link to comment
Share on other sites

"when I am logged in it says my permissions are not sufficient which is incorrect I even "echoed" the session out right before the die command and it came up as 2"

2 > 1 - therefore, the code works fine. You just don't understand what > means.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.