I have the following HTML code, and in the action section the address obeying my query string:
<form name="searchCard" class="serachCard" method="get" action="painel.php?spv=nav/buscarCard">
<fieldset>
<legend>Pesquisar:</legend>
<span>Buscar:</span>
<input type="text" name="consulta" />
<input type="submit" name="" class="btnSearch" value="Buscar" />
</fieldset>
</form>
And I submit it on the form (waiting for it to go to the page indicated in the action and give GET the "blue" value typed in the form):
Butwhathappensisthatitdoesnottaketheparameterspv
thatwaspartofthequerystringintheaction,andisintheprojecthome(panel.php).
Any suggestions?