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 ca

RE: [PHP] Re: Cache control

2005-04-26 Thread Mark Rees
One rather brute force way to get round this is to append a unique (per-session at least) id to the querystring of each page, which means that the page will be requested from the server rather than the cache. I believe this works in Opera as well as other browsers. There is more to cache-contro