Jump to content

Strange session problem


wepnop

Recommended Posts

Hi. I have to check if a session is started or not, and then, check for the rank of the user. For that i use two functions like is_administrator,etc.

 

Well, but this isnt working. I cant get any clear way to know if a session have been already started or not.

function is_administrator() {
session_start();
if (isset($_SESSION['usr']) and empty($_SESSION['usr'])) {

	$l = conect();
	$user = $_SESSION['usr'];
	$cons = "SELECT * FROM `users` WHERE usr='" . $user . '\';';		
	$res = mysql_query ($cons,$l);
	$ob = mysql_fetch_array($res);

	if ($ob['tipo'] == 'A') {
		return true;
	}

}
return false;
}

 

What i want to do is to check if a sesion exist, if not, return false. If the sesion exist, check for the user rank and return true/false.

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.