Jump to content

Help me please...


ReenKatak

Recommended Posts

Hi everyone who is reading this post

I need help

what i am trying to do is once a user is logged in the system is able to know whether it is an admin, a staff or a student and show them their links respectively. I am tryin to put in 3 conditions in one. tried using else if but it doesn't seem to work. it only works when there is 2 conditions. *SIGH*

 

if (isset($_SESSION['id']))

{

if($_SESSION['isAdmin'] == 1)

{

showAdminHyperlinks();

}

else ($_SESSION['isStaff'] == 1)

{

showStaffHyperlinks();

}

 

}

else

{

showStudentHyperlinks();

}

?>

 

 

 

Really had a hard time figuring out. Need your opinions...

Link to comment
Share on other sites

<?php
if (isset($_SESSION['id'])) {
   if($_SESSION['isAdmin'] == 1)    {
      showAdminHyperlinks();
   }
   elseif ($_SESSION['isStaff'] == 1)    {
      showStaffHyperlinks();
   } else {
   showStudentHyperlinks();
   }
}
?>

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.