Hello guys. I have decided to hide the file extension in the URL for my website (in my case .php), this is already done. I do also want to hide all URL parameters. Why I want to hide all of this is because I find it more good looking/more professional looking. Hence I do NOT do it becasue if security reasons.
My question is, how can I hide the URL parameters without destroying the functionality of my website? The first thing that came to my mind was to save the parameter values in cookies instead. The problam that came up in my head straight away is that it would not work if the user has more than one of the same page open. Do you have any ideas?
Maybe I can somehow save the parameters in PHP sessions but I think that would cause the same problem as cookies would?
For clarification. 3 different parameters can be set on the pages. the url parameters values are changed upon a button click (onclick, not a form). so one of the buttons controls parameter number 1. another button controls parameter 2 and the last button controls the last parameter. The parameters get changed on page refresh.