How to clear browser cache with php?

Viewed 236368

How to clear browser cache with php?

4 Answers
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");
Related