Answers for "php reload page with post data"

PHP
18

reload page in php

header("Refresh:0");
Posted by: Guest on March-16-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

Browse Popular Code Answers by Language