Page Caching after DB Query
am 05.01.2006 19:34:54 von 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 unsubscribe, visit: http://www.php.net/unsub.php
Re: Page Caching after DB Query
am 05.01.2006 21:01:39 von 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
> 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?
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php