Q695 Posted July 19, 2015 Share Posted July 19, 2015 I'm trying to build a facebook login for part of my php page, and was wondering if you can help me get the session creation setup? When I go to the login view it doesn't allow you me to run it as anything, but don't see how to setup the login with session[] stuff. Link to comment https://forums.phpfreaks.com/topic/297358-how-do-you-cause-a-php-login-script-to-trigger-a-session-var/ Share on other sites More sharing options...
scootstah Posted July 19, 2015 Share Posted July 19, 2015 I don't know what you mean by "trigger a session var". There's nothing special about a session variable, it's just an associative array like any other. $_SESSION['user_id'] = $someUserId; $_SESSION['logged_in'] = true; Link to comment https://forums.phpfreaks.com/topic/297358-how-do-you-cause-a-php-login-script-to-trigger-a-session-var/#findComment-1516777 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.