Brian, you are confusing client side sessions with server side session variables!
Those are two separate worlds!
Browser/client side sessions live within the browser session and are available only client side. Managed with State Manager
Server side sessions live totally on server side only and are managed with server connect set/get session variable actions and also available only server side as $_SESSION. Available while the PHP user session is active.
So again two different worlds.