[PHP] Re: Cache control

2005-04-26 Thread William Stokes
Talkin' to myself... does this solve the issue? header (Cache-Control: no-cache); -Will William Stokes [EMAIL PROTECTED] kirjoitti viestissä:[EMAIL PROTECTED] Hello, I have an web application that checks users rights to specific parts of the apllication at the beginning of each page.

RE: [PHP] Re: Cache control

2005-04-26 Thread Mark Rees
To: php-general@lists.php.net Subject: [PHP] Re: Cache control Talkin' to myself... does this solve the issue? header (Cache-Control: no-cache); -Will William Stokes [EMAIL PROTECTED] kirjoitti viestissä:[EMAIL PROTECTED] Hello, I have an web application that checks users rights to specific

Re: [PHP] Re: Cache control

2005-04-26 Thread The Disguised Jedi
I think I need to prevent the pages from beeing cached. How this can be done? I'm totally inexperinced with this stuff. Look at the examples and user notes in the header statement in the manual. http://php.net/function.header That should help you, they have a whole section on how to stop

[PHP] Re: Cache Control

2001-11-21 Thread Richard Lynch
Jeff Sittler wrote: In ASP, I ahve used: % Response.CacheControl = no-cache Response.AddHeader Pragma, no-cache Response.Expires = -1 if Session(svUsername) = then response.redirect ../login/accessDenied.asp % If you still have that site in ASP around, look at the header output