egcmx Posted October 27, 2013 Report Posted October 27, 2013 i got two files, login.php and menu.php. session_register and session_is_registered is no longer available for php 5.4. so i used $_SESSION and isset. but it keeps redirecting to login.php. can someone help me? LOGIN.PHP ---------------- $_SESSION['username']=$username; header("Location:menu.php"); MENU.PHP ---------------- session_start(); if(!isset($_SESSION['username'])) { header("location:login.php"); } Quote
falkencreative Posted October 27, 2013 Report Posted October 27, 2013 I believe you need to use session_start() in login.php as well -- before your $_SESSION line. Quote
egcmx Posted October 27, 2013 Author Report Posted October 27, 2013 thanks a lot man! you're a lifesaver! Quote
Les Posted October 27, 2013 Report Posted October 27, 2013 Hi Ben Many years ago LSW, told me about this forum as CSS first started, i remember you as a youngster asking advice on here, you are the MAN now !! cheers Les Quote
falkencreative Posted October 28, 2013 Report Posted October 28, 2013 Hi Ben Many years ago LSW, told me about this forum as CSS first started, i remember you as a youngster asking advice on here, you are the MAN now !! cheers Les lol Seems like a long time ago. Quote
Les Posted October 28, 2013 Report Posted October 28, 2013 lol Seems like a long time ago. You have great web site, brilliant Quote
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.
Note: Your post will require moderator approval before it will be visible.