jackr1909 Posted April 10, 2011 Share Posted April 10, 2011 Hi, i have a DB login system and i was wondering if there was a code that i could put on all of my web-pages so that only members (people who actually logged in) could view tem and the rest would be re-directed to /login/loginfailed.php If this is not possible, could there be a way to only allow people who came from a specific url to see the page to see them and the rest be re-directed to /login/loginfailed.php Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/233253-php-require-login/ Share on other sites More sharing options...
php.ajax.coder Posted April 10, 2011 Share Posted April 10, 2011 If you db login system is using sessions, then you should be able to read the session variable and determine if the user is logged in You will need to know the name of the session variable if($_SESSION['logged_in']){ //Hidden information only logged in users see this }else{ //Redirect to login page or display error } Link to comment https://forums.phpfreaks.com/topic/233253-php-require-login/#findComment-1199589 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.