Answers for "php do not refresh page after submit post"

PHP
1

prevent form submit on page refresh php\

//Using Javascript
<script>
if ( window.history.replaceState ) {
        window.history.replaceState( null, null, window.location.href );
    }
</script>
Posted by: Guest on September-03-2020
1

php do not refresh page after submit post

// add this code to javascript
<script>
    if ( window.history.replaceState ) {
        window.history.replaceState( null, null, window.location.href );
    }
</script>
Posted by: Guest on January-25-2021

Code answers related to "php do not refresh page after submit post"

Browse Popular Code Answers by Language