Jump to content

[SOLVED] Creating functions


ShaolinF

Recommended Posts

Hi Guys,

 

I have an awful lot of sessions and I want to create a function to check them. Below is an example of a typical session check:

 

if(isset($_SESSION['LOGINFAILED'])) 
{ 
    echo $_SESSION['LOGINFAILED'];
} else { 
    echo "none"; 
}

 

Most of my session checks go along those lines. I have tried to make a function out of it but I keep having problems. See my current attempt below:

 

function checkSession($sessionName) 
{
if(isset($_SESSION["$sessionName"])) { 
	echo $_SESSION["$sessionName"]; 
} else { 
	echo "none"; 
}
}

Link to comment
https://forums.phpfreaks.com/topic/89174-solved-creating-functions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.