Let's say a user goes to example.com/example.html?one=foo
How could I make a link so that it appends another url variable like: example.com/example.html?one=foo&two=bar
I've tried <a href="?two=bar">Click here</a>
but that just replaces the existing variable with a new one
How could I do this?
Thanks in advance