|
Posted by usenet on 07/21/05 23:10
On Thu, 21 Jul 2005 19:35:18 +0100, Andy Hassall <andy@andyh.co.uk> wrote:
>On 21 Jul 2005 10:32:30 -0700, lkrubner@geocities.com wrote:
>
>>I can't get past my browsers cache.
Add to the top of your file :
<?php
header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" );
header( "Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT" );
header( "Cache-Control: no-store, no-cache, must-revalidate" );
header( "Cache-Control: post-check=0, pre-check=0", false );
header( "Pragma: no-cache" );
?>
[Back to original message]
|