[PHP-DB] Re: My $_SESSION['''] variables are expiring!

2005-10-29 Thread Ron Piggott
I will ask them to check the php.ini file. The session variables are working ... as in I have been in my account and made changes (such as updated my address) so I know the computer is keeping my $_SESSION['account_reference'] until *something* happens and it it expires. Then account_reference

RE: [PHP-DB] Re: My $_SESSION['''] variables are expiring!

2005-10-29 Thread Ron Piggott
-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED], PHP DB php-db@lists.php.net Subject: [PHP-DB] Re: My $_SESSION['''] variables are expiring! Date: Sat, 29 Oct 2005 10:20:57 -0400 I will ask them to check the php.ini file. The session variables are working ... as in I have been in my account

Re: [PHP-DB] Re: My $_SESSION['''] variables are expiring!

2005-10-29 Thread Ron Piggott
session_regenerate_id works. Ron On Sat, 2005-29-10 at 16:23 -0500, Jackson wrote: To my knowledge, transfering the contents of the registered variables to an unregistered variable and then unregistering the registered variable and re-registering it would work, but seems a little painstaking.

Re: [PHP-DB] Re: My $_SESSION['''] variables are expiring!

2005-10-29 Thread graeme_foster
be if (!isset($_SESSION) { $_SESSION['some_var'] = 0; } B From: Ron Piggott [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED], PHP DB php-db@lists.php.net Subject: [PHP-DB] Re: My $_SESSION['''] variables are expiring! Date: Sat, 29 Oct 2005 10:20:57 -0400 I will ask them to check