PHP script to disable the cache for an PHP page
Just add the following php lines before starting the html scripts to disable the cache.<?php// Disables cacheheader
(“Cache-Control: no-store, no-cache, must-revalidate, max-age=0”
);header
(“Cache-Control: post-check=0, pre-check=0”
, false
);header
(“Pragma: no-cache”
);?>