Jump to content

Redirect user - headers based on session variables


wright67uk

Recommended Posts

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
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.