[PHP-DB] Page Caching after DB Query

2006-01-05 Thread dpgirago
How can I force the browser to re-display the last dynamically created page when using the back button, for example, rather than re-issuing the query. Are there any complications because we are using the https protocol on Apache? David -- PHP Database Mailing List (http://www.php.net/) To

Re: [PHP-DB] Page Caching after DB Query

2006-01-05 Thread dpgirago
/* for the archives */ Ah, it's in the manual, isn't it? I was calling session_start() on the page, so the session.cache_limiter value of 'nocache' in php.ini was overriding all attempts to cache the page. Calling session_cache_limiter('private') before session_start() did the trick. David