vote up 0 vote down star

How to clear browser cache with php?

flag

2  
You mean: How to prevent my stuff from being cached. You can´t clear a browsers cache from the server without preinstalled software (activeX etc.) that has extensive rights to modify the user´s system. – anddoutoi Jun 24 at 9:25

2 Answers

vote up 4 vote down check
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Content-Type: application/xml; charset=utf-8");
link|flag
1  
Clearing the cache everytime isn't always the best option though. It might be worth reading up on. – Jon Winstanley Jun 24 at 10:29
Content-Type here is a red herring. – porneL Sep 6 at 15:55
vote up 3 vote down

Detailed article for a better understanding of Web Caches: Caching Tutorial for Web Authors and Webmasters

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.