I hate to say this but redirection is not going to solve the reprocessing problem. It will just move the problem to the browsers back button. This is not a good solution since the back button is used much more often than the reload button.
To stop the reprocessing of information requires a check. This means you actually have to look to see if you've already processed the information once. If so then don't process it again.
<?
$check=0;
/Run your check on the information. If you've already processed it set $check=1 /
checkinfo();
if (!$check){
include(processinfo.php);
}
?>
This will mean that you will need some way of determining whether the information has been processed before or not.