How do I change the current URL with jQuery without reloading the page (to add parameters) so that I can use $_GET[''] in PHP.
Basically, I have a form and I want the user inputs to go to the URL as parameters instead of using the usual $_POST['']. I don't want to use post because I want it to work if the user reloads the page or goes to another page then goes back to this page.
I don't want to reload the page because I have some ajax stuff going on for animations and a reload would interfere with that.