graham23s Posted April 6, 2008 Share Posted April 6, 2008 Hi Guys, on the site i am making, i was wanting the user to be ablr to view member profiles, but when they come to message them they need to be logged in, i'm wondering how to go about it, i'm thinking don't set session control on the profile.php page? would that be a way to go? cheers guys Graham Link to comment https://forums.phpfreaks.com/topic/99818-viewing-user-profiles/ Share on other sites More sharing options...
papaface Posted April 6, 2008 Share Posted April 6, 2008 very basic way (depending on if you set $_SESSION['loggedin'] = 1;) session_start(); if ($_SESSION['loggedin'] == 1) { //message } else { //must be logged in } Link to comment https://forums.phpfreaks.com/topic/99818-viewing-user-profiles/#findComment-510517 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.