sun14php Posted July 1, 2006 Share Posted July 1, 2006 Hi, all, as i hv build my website(under apache,redhat as 4,php,mysql) now i hv a login page as start-up page on site. it takes username & password & allow user to proceed. but it's not authentication .. i want that a user unable to access any page unless he give proper username & password at first page itself or he redirect to first page saying "Login first". it is just like session control or something. please guide me to get it fit.help needed Quote Link to comment https://forums.phpfreaks.com/topic/13360-password-session-control/ Share on other sites More sharing options...
redarrow Posted July 1, 2006 Share Posted July 1, 2006 Set the session information correctly.<? session_start();if((!$_SESSION['username'])&&(!$_SESSION['password'])){code}else{header("location: index.php");}?>or display a message and a link to goto the main page only an example.<? session_start();if((!$_SESSION['username'])&&(!$_SESSION['password'])){code}else{echo" Sorry please login <br><br> <A href='index.php'>login please</a";exit;}?>Only an example hope this helps. Quote Link to comment https://forums.phpfreaks.com/topic/13360-password-session-control/#findComment-51564 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.