I don't think that would work, since the browsers cache is very persistent. The values in question wouldn't be $_POST values, but text in html forms.
And it's the previous page (with the form) that needs to be looked at, not the submitscript.
If you try to set some no-cache headers in the script with the form:
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
That might help, but I doubt it 😃 The browsers, and especially msie for win2000, is VERY fond of their cached pages, and reluctant to let the data go...
knutm