Jump to content

something other than sessions


justAnoob

Recommended Posts

I use a lot of sessions and things are starting to get confusing....I use sessions for error and success messages and so on...... What else can I do to accomplish this??? I'm looking for something a little more organized.

 

example

<?php
$_SESSION['no_view'] = "You must be logged in to send messages.";
header("location: http://www.------.com/------.php");
exit();
?>

 

then on my page where the session is to be displayed..

<?php
if(isset($_SESSION['no_view']))
{
   unset($_SESSION['message']);
   unset($_SESSION['goodlog']);
   echo $_SESSION['no_view'];
}
?>

 

 

Link to comment
Share on other sites

You can also pass error codes in the URL:

 

example.com?error=1
example.com?error=2

 

if(isset($_GET['error']))
{
  switch($_GET['error'])
  {
    case 1:
      echo 'you suck';
      break;
    case 2:
      echo 'you suck even more';
      break;
    default:
      echo 'you are the suckiest of the sucky.';
  }
}

Link to comment
Share on other sites

if(isset($_GET['error']))
{
  switch($_GET['error'])
  {
    case 1:
      echo 'you suck';
      break;
    case 2:
      echo 'you suck even more';
      break;
    default:
      echo 'you are the suckiest of the sucky.';
  }
}

i like this

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.