Bart Coninckx wrote:
> header('Cache-Control:Âno-store,Âno-cache,Âmust-revalidate');Â//
> HTTP/1.1
> header('Cache-Control:Âpost-check=0,Âpre-check=0');Â//ÂdamnableÂIE5
You overwrite the first Cache-Control command, use:
header("Cache-Control: post-check=0, pre-check=0", false);
Now both Cache-Control commands are being sent.
Christian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

