I have the following code on my site (using php and smarty) to try and avoid a form resubmitting when I hit f5:
if ($this->bln_added == false) {
if (isset($_POST['submit'])){
$this->obj_site->obj_smarty->assign('title',$_POST['tas_heading']);
$this->obj_site->obj_smarty->assign('desc',$_POST['tas_description']);
}
} else {
$this->obj_site->obj_smarty->assign('title','');
$this->obj_site->obj_smarty->assign('desc','');
unset($_POST);
}
bln_added is false by default, but changes to true once the form is successfully submitted. The smarty variables title and desc are used in the template to keep the form content there in case there is a user error and they need to change what they entered.
If the form is submitted successfully it sets bln_added = true, so the second bit of code should not only clear the form fields, but also empty $_POST. But if I press f5 the post data is still there.
Any ideas?