Simple Question Regarding Session Variables
When I create a session variable, I know that it is stored on the server, and not on the client. But what I am wondering is does the session only exist for the specific client that triggered it to be created? For example, if I create a session variable that says something like:
<cfif isDefined("session.user12")>
<!--- LOG IN THE USER --->
</cfif>
Lets say session.user12 was created when somebody logged into the site earlier and it still exists. Will this log in anybody who lands on the site or will it only log in the person who triggered session.user12 to be create earlier?
Ben
