[PHP] RE: Help with Sessions - Should be easy =]

2001-12-21 Thread Tim Ward
session_register(sessionvar); you can now assign values to $sessionvar (or whatever you've chosen to call it). You need to register each variable and start the session at the top of each script. In practice it's a lot easier if you hold all your session stuff under a single hash array, that way

[PHP] Re: Help with Sessions - Should be easy =]

2001-12-20 Thread Fred
Why don't you give us a code snippet so we know how you are trying to do it. Fred Tomasz Jachimczak [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I am coming from an asp background, and am used to setting session variables very easily, but I cannot work them