Hi all,
I have problems with the HTTP headers in different browsers:
Cache-Control: max-age=1, must-revalidate
Pragma: no-cache
Works in Linux (with NS 4.5). It do the refresh and when a press the back button in browser, the data doesn't lose. But this only works in Linux.
With the next headers works in Windows/Linux but the data doesn't refresh:
$exp_gmt = gmdate("D, d M Y H:i:s", time() + 30 * 60) . " GMT";
$mod_gmt = gmdate("D, d M Y H:i:s", time()) . " GMT";
header("Expires: " . $exp_gmt);
header("Last-Modified: " . $mod_gmt);
header("Cache-Control: store, cache");
header("Pragma: cache");
How can I do to refresh the data??
Thanks in advance.