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. Quote 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; Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.