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
Share on other sites

You can write a function that will do all those things, but to write the function versatile enough to be able to handle all the different types of queries it ends up becoming so bulky that you might as well just write the queries inline each time.

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.