How to disable codeigniter’s cache

Codeigniter

Learn how to disable Codeigniter’s cache for some specific IP address or logged in users and how to implement your own cache logic. Enabling the Codeigniter’s cache Enabling the cache is very easy in your Codeigniter’s application. In any of your controller when you want it enabled just call this function: $this->output->cache($minutes); when your controller [...]

php: howto control page caching header

php e mysql

Learn how to make your PHP pages cacheables or not by proxies and browsers leveraging performances, expecially usefull when generating images or PDFs.