|
Posted by Alvaro G. Vicario on 09/10/06 08:06
*** stan@qtandthegeek.com escribió/wrote (9 Sep 2006 18:58:51 -0700):
> Trouble is, the edit or deletion is (of course) not reflected when the
> user returns to the search results.
Tell the browser the page must not be cached:
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()-86400*365*10) . ' GMT');
header('Expires: ' . gmdate('D, d M Y H:i:s', time()-86400*365*10) . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
I'm not 100% sure but this may help.
--
-+ http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
++ Mi sitio sobre programación web: http://bits.demogracia.com
+- Mi web de humor con rayos UVA: http://www.demogracia.com
--
[Back to original message]
|