Use this on a secure page to save the current url page and query string in the session.
<?
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
session_start();
$_SESSION['url_attempt'] = curPageURL();
Use this after a successful login to redirect the user to the page stored in the session.
<?php
session_start();
header('Location: '.$_SESSION['url_attempt']);
?>
source
share