Re: [PHP-DEV] Session variables

2002-07-31 Thread Pierre-Alain Joye
On Wed, 31 Jul 2002 08:57:36 -0700 (PDT) Brad LaFountain <[EMAIL PROTECTED]> wrote: > You are suggesting using srm for session handling? Thats a little mis-guided. > php's built in session handling would do the job. Yes, mis-reading, I read the usual application data request :), sorry :) pa

Re: [PHP-DEV] Session variables

2002-07-31 Thread Brad LaFountain
--- Pierre-Alain Joye <[EMAIL PROTECTED]> wrote: > On Wed, 31 Jul 2002 16:53:59 +0200 > "Diana Castillo" <[EMAIL PROTECTED]> wrote: > > > Hi, with ASP I use session variables to keep a variable "alive" between one > > page and another. What is the comparable way to do it with php? > > > Take

Re: [PHP-DEV] Session variables

2002-07-31 Thread Pierre-Alain Joye
On Wed, 31 Jul 2002 16:53:59 +0200 "Diana Castillo" <[EMAIL PROTECTED]> wrote: > Hi, with ASP I use session variables to keep a variable "alive" between one > page and another. What is the comparable way to do it with php? Take a look at http://www.vl-srm.net/ hth pa -- PHP Development Ma

Re: [PHP-DEV] Session variables

2002-07-31 Thread Daniel Lorch
hi, > Hi, with ASP I use session variables to keep a variable "alive" between one > page and another. What is the comparable way to do it with php? > Thank you, > Diana believe it or not - using session variables: http://php.net/session -daniel -- PHP Development Mailing List

[PHP-DEV] Session variables

2002-07-31 Thread Diana Castillo
Hi, with ASP I use session variables to keep a variable "alive" between one page and another. What is the comparable way to do it with php? Thank you, Diana -- http://www.nvtechnologies.com/hgh -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/uns

Re: [PHP-DEV] Session variables confusion

2001-11-10 Thread Sebastian Bergmann
Jon Parise wrote: > What about $GLOBALS['HTTP_SESSION_VARS']['a']? Actually I'm searching for a way to access session variables that works with both register_globals settings. The above line works with register_globals = Off, but no On. -- Sebastian Bergmann http://sebastian-bergmann

Re: [PHP-DEV] Session variables confusion

2001-11-10 Thread Jon Parise
On Sun, Nov 11, 2001 at 12:02:56AM +0100, Sebastian Bergmann wrote: > Environment: Current CVS on Win32. > > session_register('a'); > session_register('b'); > session_register('c'); > > echo 'GLOBALS[a]: ' . ++$GLOBALS['a'] . ''; > echo '_SESSI

[PHP-DEV] Session variables confusion

2001-11-10 Thread Sebastian Bergmann
Environment: Current CVS on Win32. '; echo '_SESSION[b]: ' . ++$_SESSION['b'] . ''; echo 'HTTP_SESSION_VARS[c]: ' . ++$HTTP_SESSION_VARS['c'] . ''; ?> register_globals = On -> Only ++$GLOBALS['a'] is effective register_globals = Off -> ++$GLOBALS['a'] is