Doing some research I found that session cache paramemters may be set in
PHP.INI or overridden by inserting the following header() lines into the
php for the page you want to cache on the clients browser.

Allow Cache Expire time is set in php.ini in minutes.  Search php.ini for
key word cache and it will be the first time that comes up.

header("Cache-Control: public");
header("Cache-Control: max-age=" . $this->allowcache_expire * 60);


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to