Jump to content

PHP redirect with variable


JKershner

Recommended Posts

Hey everybody, I'm kinda new if you haven't noticed from previous requests and I hate asking for help but I only ask as a last resort.

I'm try to set up seperate member pages depending on "groups".  What I'm trying to accomplish is, after signing in, they are automatically redirected to their perspective pages without customizing include() files.  I understand the basic redirect function of:

<code>

$member = mysql_fetch_assoc($result);

$_SESSION['SESS_MEMBER_ID'] = $member['member_id'];

$_SESSION['SESS_FIRST_NAME'] = $member['firstname'];

$_SESSION['SESS_LAST_NAME'] = $member['lastname'];

$_SESSION['SESS_LOGIN_NAME'] = $member['login'];

$_SESSION['SESS_LEGION_NAME'] = $member['legion'];

$_SESSION['SESS_AUTH_NAME'] = $member['auth'];

session_write_close();

header("location: member-index.php");

                        exit; </code>

What I need to do is, replace the header() with:

header("location: '$_SESSION['SESS_LEGION_NAME'].php'"); or a "$var.php"

 

Thanks in Advance

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.