PDA

View Full Version : CACHING! How to turn off?


lexx
06-01-2006, 12:31 PM
How can the cashing procedures can be turned off?

Because all the active pages stay without changes before smth like this will be typed :((((

index.php?blahblahblah

No instruments in admin panel was found :((

lazynitwit
06-01-2006, 12:36 PM
You can use PHP's header function to disable a browser caching your page:
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
http://www.php.net/manual/en/function.header.php