Jump to content

redirecting a web page along with session info


garry27

Recommended Posts

i have a self executable login script with a form that validates login credentials when you click the submit button.

what could i do to get it to redirect the user to another page as soon as it validates the user and carries the session variable on to the new script?

Link to comment
Share on other sites

If the variable is set in the session then there's no need to do anything.

Redirect using the header() function.

[code]
<?php
if ($username == $validated){
  // if the user is validated then redirect using header
  header("Location: redirect.php");
}
?>
[/code]

Assuming your user is saved in a session variable then you should be able to access like so... [code=php:0]echo $_SESSION['username'];[/code] assuming that your variable is called [color=green]username[/color]
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.