Jump to content

Sessions


TheFilmGod

Recommended Posts

I want to create a script on top each page that requires admin access to check if they are authorized. If they aren't the php does a header ('...'), that redirects them to a log in page. Once they get there I somehow want to pull out the address of the page they came from. Something like sessions but I don't know how. Finally, when they submit the log in form and successful login I want the page to redirect them back. Is this possible?

Link to comment
Share on other sites

You can pass the url in the location header, like this:

 

header("Location: http://blah.com/login.html?url=" . urlencode($my_url));

 

You will need to set $my_url appropriately from the $_SERVER variables.

 

Then inside login.html:

 

$referrer_url = urldecode($_GET['url']);

 

Or you could just use sessions.  $_SESSION['url'] = $my_url;

Link to comment
Share on other sites

On top of each page u need this thing u can use:

 

<?php
$page = basename($_SERVER['PHP_SELF']);
if($_SESSION['auth'] == 'false'){
$_SESSION['lastPage'] = $page;
header('Location: login.php');
}
?>

 

then in the login

 

<?php
//after validating
if(isset($_SESSION['lastPage'])){
$page = $_SESSION['lastPage'];
header('Location: $page');
} else{
header('Location: index.php');
}
?>

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.