Jump to content

How do you cause a PHP login script to trigger a session var?


Q695

Recommended Posts

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.

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;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.