Re: [PHP] browser back button - Page has Expired.. problem

2002-01-29 Thread phantom
Also consider: header(Cache-Control: public); header(Cache-Control: max-age= . $this-allowcache_expire * 60); This will allow to set the expiration of the cached file on the on the clients browser. The Cache Expire time is in minutes and can be found (and changed) in the php.ini file. Search

RE: [PHP] browser back button - Page has Expired.. problem

2002-01-28 Thread Darren Gamble
Good day, By default, IE will cache these pages (i.e. you won't get this message). If you're receiving that message, it means that the browser doesn't have a cached version of the page. Getting a new version would obviously mean submitting the form information again, which IE, thankfully,

Re: [PHP] browser back button - Page has Expired.. problem

2002-01-28 Thread Alex Vargas
Just add this header header (Cache-Control: public); Alex. - Original Message - From: Lee P Reilly [EMAIL PROTECTED] To: PHP List [EMAIL PROTECTED] Sent: Monday, January 28, 2002 11:26 PM Subject: [PHP] browser back button - Page has Expired.. problem Hi, I wonder if anyone can