CodeIgniter Forums
On Update/Delete data is not showing properly - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: On Update/Delete data is not showing properly (/showthread.php?tid=52266)

Pages: 1 2


On Update/Delete data is not showing properly - El Forum - 06-04-2012

[eluser]Learn CodeIgniter[/eluser]
Sounds like your browser is caching your page, send a no-cache header and see if it works.
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");



On Update/Delete data is not showing properly - El Forum - 06-04-2012

[eluser]Was[/eluser]
many many thanx dude its working Smile


On Update/Delete data is not showing properly - El Forum - 06-04-2012

[eluser]Was[/eluser]
my pagination is working correctly and thanx everyone for supporting .

Was