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
https://forums.phpfreaks.com/topic/240430-php-redirect-with-variable/
Share on other sites

From http://php.net/manual/en/function.session-write-close.php :

session_write_close

 

(PHP 4 >= 4.0.4, PHP 5)

 

session_write_close — Write session data and end session

 

If you remove that statement, and do as you suggest yourself, it should work. :P

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.