JKershner Posted June 26, 2011 Share Posted June 26, 2011 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 Quote Link to comment https://forums.phpfreaks.com/topic/240430-php-redirect-with-variable/ Share on other sites More sharing options...
EdwinPaul Posted June 26, 2011 Share Posted June 26, 2011 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. Quote Link to comment https://forums.phpfreaks.com/topic/240430-php-redirect-with-variable/#findComment-1234954 Share on other sites More sharing options...
MasterACE14 Posted June 26, 2011 Share Posted June 26, 2011 header("location: ".$_SESSION['SESS_LEGION_NAME'].".php"); Quote Link to comment https://forums.phpfreaks.com/topic/240430-php-redirect-with-variable/#findComment-1234963 Share on other sites More sharing options...
JKershner Posted June 26, 2011 Author Share Posted June 26, 2011 Thank you, I must've been more tired then I had thought lastnight as that worked. Once again, thank you all Quote Link to comment https://forums.phpfreaks.com/topic/240430-php-redirect-with-variable/#findComment-1235070 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.