If you want to prevent a html-page from beign stored in cache, insert these two lines in your php source file.
header("Cache-control: no-cache");
header("Expires: " . gmdate("D, d M Y H:i:s") . " GMT");
You might have to remove old pages already stored in cache, or else the old ones are being used instead.
Hope this one makes it for you.