garry27 Posted October 18, 2006 Share Posted October 18, 2006 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? Quote Link to comment https://forums.phpfreaks.com/topic/24292-redirecting-a-web-page-along-with-session-info/ Share on other sites More sharing options...
HuggieBear Posted October 18, 2006 Share Posted October 18, 2006 If the variable is set in the session then there's no need to do anything.Redirect using the header() function.[code]<?phpif ($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] Quote Link to comment https://forums.phpfreaks.com/topic/24292-redirecting-a-web-page-along-with-session-info/#findComment-110442 Share on other sites More sharing options...
garry27 Posted October 18, 2006 Author Share Posted October 18, 2006 ok. thanks huggiebear. ;) Quote Link to comment https://forums.phpfreaks.com/topic/24292-redirecting-a-web-page-along-with-session-info/#findComment-110445 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.