RE: [PHP] session.bug_compat_42

2004-03-24 Thread Ralph
PROTECTED] Sent: Tuesday, March 23, 2004 9:12 AM To: James E Hicks III Cc: PHP-General Subject: Re: [PHP] session.bug_compat_42 This has nothing to do with the browser. Instead of using session_register("last_time") and setting $last_time, do this: $_SESSION['last_time']

Re: [PHP] session.bug_compat_42

2004-03-23 Thread James E Hicks III
Thanks to all who helped, I think I got it figured out now. James Hicks On Tuesday 23 March 2004 12:11 pm, Rasmus Lerdorf wrote: > This has nothing to do with the browser. Instead of using > session_register("last_time") and setting $last_time, do this: > > $_SESSION['last_time'] = time();

Re: [PHP] session.bug_compat_42

2004-03-23 Thread Rasmus Lerdorf
This has nothing to do with the browser. Instead of using session_register("last_time") and setting $last_time, do this: $_SESSION['last_time'] = time(); It's shorter and it will make the warning go away. -Rasmus On Tue, 23 Mar 2004, James E Hicks III wrote: > What does the code look like