Working on local server, none of the changes made to php script(html) is refreshed on reload of browser, can someone advice please?
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
//---THIS GETS UPDATED HOWEVER!! <<<<<<<<<<<<<<
$uid = microtime('get_as_afloat');
echo "uid =" . $uid;
///--- <<<<<<<<<<<<<<<<<
//md5(uniqid(time()));
?>
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Pragma-directive" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Directive" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
<title>Browser caching problem</title>
</head>
<body>
Content here DOESN'T GET REFRESHED ON RELOAD, HOWEVER THE $uid (on the top of the script gets updated, why?????
This started happening after I upadated firefox and other browsers, it was working fine before. Or is this simply the matter of my computer being affected by virus bla?
Thanks
</body>
</html>