RE: [PHP] Force no Cache

2003-04-05 Thread Rasmus Lerdorf
On Sat, 5 Apr 2003, John W. Holmes wrote: > > header('Cache-Control: no-cache, must-revalidate'); > > header('Pragma: no-cache'); > > header('Expires: Mon,26 Jul 1980 05:00:00 GMT'); > > Kind of a follow on question to this. If you use a method like this on > public web pages, does anyone know if

RE: [PHP] Force no Cache

2003-04-05 Thread John W. Holmes
> header('Cache-Control: no-cache, must-revalidate'); > header('Pragma: no-cache'); > header('Expires: Mon,26 Jul 1980 05:00:00 GMT'); Kind of a follow on question to this. If you use a method like this on public web pages, does anyone know if it'll affect how search engines index your page? Will

Re: [PHP] Force no Cache

2003-04-05 Thread Rasmus Lerdorf
header('Cache-Control: no-cache, must-revalidate'); header('Pragma: no-cache'); header('Expires: Mon,26 Jul 1980 05:00:00 GMT'); On Sat, 5 Apr 2003, [iso-8859-1] Davíð Örn Jóhannsson wrote: > Is there any way in php to disable the users cache so that every time > you reload you fetch the newest

[PHP] Force no Cache

2003-04-05 Thread Davíð Örn Jóhannsson
Is there any way in php to disable the users cache so that every time you reload you fetch the newest version of the site? Regards, David