I have a page on a system where I list the products registered in the DB, I am implementing some filters within this page, and I would like to update the links of the filters as requested in the URL (GET REQUEST):
At the beginning of the page the links of the filters contained in it should start as follows:
Category
<a href="meusite.com.br/produtos?_categoria=1">Categoria 1</a>
<a href="meusite.com.br/produtos?_categoria=2">Categoria 2</a>
<a href="meusite.com.br/produtos?_categoria=3">Categoria 3</a>
Numbering
<a href="meusite.com.br/produtos?_numeracao=34">34</a>
<a href="meusite.com.br/produtos?_numeracao=35">35</a>
<a href="meusite.com.br/produtos?_numeracao=36">36</a>
If the user accesses the page filter, link's should update as follows:
If you access the category filter the numbering filter links should be:
<a href="meusite.com.br/produtos?_categoria=1&_numeracao=34">34</a>
<a href="meusite.com.br/produtos?_categoria=1&_numeracao=35">35</a>
<a href="meusite.com.br/produtos?_categoria=1&_numeracao=36">36</a>
If you access the numbering filter the category filter the links
<a href="meusite.com.br/produtos?_categoria=1&_numeracao=34">Categoria 1</a>
<a href="meusite.com.br/produtos?_categoria=2&_numeracao=34">Categoria 2</a>
<a href="meusite.com.br/produtos?_categoria=3&_numeracao=34">Categoria 3</a>
I would like a direction to start, because I am not able to find the logic of how to do it.