Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

php prevent form resubmission


<!---
Add this to your HTML and it will prevent a pop up.
Found the answer from the link below.
https://stackoverflow.com/questions/6320113/how-to-prevent-form-resubmission-when-page-is-refreshed-f5-ctrlr
--->

<script>
if(window.history.replaceState) 
{
	window.history.replaceState(null, null, window.location.href);
}
</script>
 
PREVIOUS NEXT
Tagged: #php #prevent #form #resubmission
ADD COMMENT
Topic
Name
2+6 =