Re: [PHP] HTTP Authentication with PHP

2001-05-17 Thread Chris Lee
this seems to make my browsers not cache. header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); then add header("WWW-Authenticate: Basic realm='$

[PHP] HTTP Authentication with PHP

2001-05-17 Thread Chris
I have configured mod_auth_pam for Apache and secured a directory with an .htaccess file: AuthType Basic AuthName "Secure Area" require group staff require user chris Now, I would like to control the local browser window's authentication cache via PHP. For example, how do I clear the cac