From "Beginning PHP4" (WROX press) p.52:
Put the following lines of code at the beginning of your page (ie before the
tag:
<?php
header("Cache-Control: no-cache, must re-validate");
header("Pragma: no-cache");
header("Expires: Mon, 29 Jan 2001 12:00:00 GMT");
?>
Make sure to use a date that is at least 24 hours old to ensure correct page behaviour for anyone connecting from a different time zone.