You need to stop the browser from caching the page. This forces the browser to reload the page completely every time.
Put this at the start of the output from the script for this page:
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
Paul