I am trying to get variables from a url, but every time the url already has a request, it is overwritten with the following request. Example: I have a link:
<a href="?page=34">Page 34</a>
When you click on this link, this link becomes visible;
<a href="?item=45">Item 45</a>
But when I click this link, the other one is rewritten, so the URL looks like this:
www.domainname.ext /? Item45
But I want it to look like this:
?www.domainname.ext / page = 34 & item45
How to do it? Thanks in advance!
html php
Jay wit
source share