Hi Karl 2010/4/6 Karl DeSaulniers <[email protected]>
> Is there a way to set up a no-cache control in your php.ini file or some
> config file?
> Sorry if this is a newb question.
>
Put it in the header:
header("Cache-Control: no-cache, must-revalidate");
Remember headers must be the first output you do, read more here.
http://dk.php.net/manual/en/function.header.php
--
Kind regards
Kim Emax

