To deactivate any proxy-cache, code this four header instructions at the very beginning of your script:
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // some gone date
header ("Last-Modified: " . gmdate ("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache"); // HTTP/1.0
To deactivate browser cache, insert following meta tag to your produced html codes
<META http-equiv="expires" content="0">