Re: [PHP] Assist with session persistance

2003-12-23 Thread John W. Holmes
Terry Romine wrote: Is there a timeout on sessions other than closing the browser? If so, is there a way to set timeout if one doesn't have server admin access? Session timeout is controlled by the session.gc_maxlifetime setting. It's the number of seconds after which session files will be se

Re: [PHP] Assist with session persistance

2003-12-23 Thread Matt Matijevich
[snip] ex: display.php session_start(); $agencyID=$_SESSION['agencyID']; $agencyName=$_SESSION['agencyName']; But after awhile, the session seems to fail and I end up back at the index page because the $agencyID gets voided. Is there a timeout on sessions other than c

[PHP] Assist with session persistance

2003-12-23 Thread Terry Romine
I have a site that is using $_SESSION['variablename'] for many variables that are loaded when the user first enters the site (index.php), and then referenced on each page (display.php): ex: index.php session_start(); $agencyID=9; $agencyName="fremont"; $_SESSI