Is it possible to avoid caching pages visited first time? i mean to say that if i'm loading a site first time, then it should not cache the visited pages.
Please help..
This is straight from the php manual.
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1 header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); // HTTP/1.0
Cheers.
Thank John...