wright67uk Posted July 13, 2013 Share Posted July 13, 2013 What is best practice when re-directing a user based on their session variables? Ok, so my below code gives me headers already sent error, as i'm using header location more than once, but it shows what i'm trying to do at least. <?php session_start(); $user_id = $_SESSION["user"]["user_id"]; $loc1 = header("Location: page1.php"); $loc2 = header("Location: page2.php"); if ($user_id === 1008) {$loc1;} if ($user_id === 2) {$loc2;} ?> Link to comment https://forums.phpfreaks.com/topic/280117-redirect-user-headers-based-on-session-variables/ Share on other sites More sharing options...
web_craftsman Posted July 13, 2013 Share Posted July 13, 2013 $loc1 = 'Location: page1.php'; // $loc2 = ... if ($user_id === 1008) header($loc1); Link to comment https://forums.phpfreaks.com/topic/280117-redirect-user-headers-based-on-session-variables/#findComment-1440571 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.