Re: Adding values to Session file

2000-08-18 Thread Bogomolnyi Constantin
whole thing $r->register_cleanup(   sub{   untie %session;   #syncronise the session hash    #put here all close statements to your database handlers ( if you need that )        }  );   - Original Message - From: Differentiated Software Solutions

RE: Adding values to Session file

2000-08-18 Thread Jerrad Pierce
untie'ing? -Original Message-From: Differentiated Software Solutions Pvt. Ltd [mailto:[EMAIL PROTECTED]]Sent: Friday, August 18, 2000 9:04 AMTo: [EMAIL PROTECTED]Subject: Adding values to Session file Hi,   We have a site where we create a session file on login an

Adding values to Session file

2000-08-18 Thread Differentiated Software Solutions Pvt. Ltd
Hi,   We have a site where we create a session file on login and tie some values. After a few page visits we want to add more values to the session file again using tie.   We find that only the first set of values get added. Subsequent values do not get added to this file. Can somebody tell u