Welcome Guest, Not a member yet? Register   Sign In
HELP ME
#2

[eluser]InsiteFX[/eluser]
Then your web browser is caching your pages and you would need to send a no-cache header before outputing again.

Code:
this->output->set_header("HTTP/1.0 200 OK");
$this->output->set_header("HTTP/1.1 200 OK");
$this->output->set_header('Last-Modified: '.gmdate('D, d M Y H:i:s', $last_update).' GMT');
$this->output->set_header("Cache-Control: no-store, no-cache, must-revalidate");
$this->output->set_header("Cache-Control: post-check=0, pre-check=0");
$this->output->set_header("Pragma: no-cache");


Messages In This Thread
HELP ME - by El Forum - 07-24-2012, 12:43 AM
HELP ME - by El Forum - 07-24-2012, 03:11 AM
HELP ME - by El Forum - 07-25-2012, 06:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB