Jump to content

help with redirection


icon

Recommended Posts

hi


i have made a site which uses mysql with sessions, but what i wont to know is i have the following code:

<?

if(!$_SESSION['username']){

header("Location: [a href=\"http://domain");\" target=\"_blank\"]http://domain");[/a]

} else {

print <<<END

html

END;
}
?>



on the page to protect and if there is no session name in the current session it redirect to the login page how do i have a query string added to the url that send it back to the page it come from like ie domain.com/bahbah/?url=http://home.domain.com

thanks
Link to comment
https://forums.phpfreaks.com/topic/7237-help-with-redirection/
Share on other sites

what you say is exactly right...

just add

?url=http://www....whatever

or you could even just use php server variable to get the referring page.

I like to add an error variable on to saty something like
[code]
$error_explain="Your Session has timed out.  Please log back in.";

header("Location: http://domain/login.php?url=http://referrer&amp;error=$error_explain");
[/code]
Link to comment
https://forums.phpfreaks.com/topic/7237-help-with-redirection/#findComment-26353
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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