SIMPLE ANSWER
Just place this in the top of the file you need to make the GET querys disappear from the browser’s URL bar after loading.
1 2 3 4 5 6 7 |
<script> if(typeof window.history.pushState == 'function') { window.history.pushState({}, "Hide", '<?php echo $_SERVER['PHP_SELF'];?>'); } </script> |