I will do based on the information you passed in your code, I believe you are making a system for rent/ sale of real estate, is the following:
In the attribute href of the links [to] from your list you can make "http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=nomeDaCategoria", in this case the parameter category may receive a database ID or even a name.
To the archive index php.:
<ul class="categorias">
<li><a href="http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=lancamentos">Lançamentos</a></li>
<li><a href="http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=vista_panoramicas">Vista Panorâmica</a></li>
<li><a href="http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=mobiliados">Mobiliados</a></li>
<li><a href="http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=pronto_morar">Pronto para Morar</a></li>
<li><a href="http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=usados">Usados</a></li>
<li><a href="http://nomeDoSeuSite.com.br/scriptQueRecebeParametros.php?categoria=duplex">Duplex</a></li>
In the archive scriptQueRecebeParametros.php, does the following:
<?php
/**
* $categoria
* É a variável que receberá as informações da página principal.
*
* Vamos fazer por $_REQUEST, pois desta forma se seu script mudar no futuro e você
* resolver passar os parâmetros via $_POST ou qualquer tipo de método HTTP,
* o script de recebimento não irá parar de funcionar. Desta forma primeiro
* verificamos se o valor foi passado com "isset", caso tenha vindo recebe o valor,
* caso contrário recebe vazio
*/
$categoria = isset($_REQUEST['categoria']) ? $_REQUEST['categoria'] : '';
// Se código aqui!
Tried to pass the file and querystring on link,
<a href="principal/lancamento.php?id=1&nome=teste">Lançamentos</a>
– rray
if ($_GET['name_sua_var']) { commands;}
– HiHello
@lost was more a white than something else. Can you formulate a response for me to evaluate? Thank you.
– Marcos Vinicius