Welcome Guest, Not a member yet? Register   Sign In
On Update/Delete data is not showing properly
#11

[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");
#12

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

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

Was




Theme © iAndrew 2016 - Forum software by © MyBB