laflair13 Posted February 26, 2015 Author Share Posted February 26, 2015 Ok, I added this to the dashboard.php and I got the message "Welcome to the member's area", which tells me that I am able to login. <?PHP session_start(); if (!isset($_SESSION['members']) || $_SESSION['members'] != "1") { echo "Welcome to the member's area, " . $_SESSION['username'] . "!"; } else { echo "Please log in first to see this page."; } ?> BUT, I just realized that I was had by a simple mistake. With the code was working and logging me in, but I had the header location going right back to the index.php file. VERY BAD rookie mistake that I totally missed. <?PHP session_start(); if (!isset($_SESSION['members']) || $_SESSION['members'] != "1") { header ("Location: index.php"); } ?> Quote Link to comment Share on other sites More sharing options...
ginerjm Posted February 27, 2015 Share Posted February 27, 2015 So - this topic is finished? Please post it as answered then. Quote Link to comment 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.