8
I have the following HTML code, and in the action Seto 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 perform the Submit in the form (waiting for it to go to the page indicated in the action and take in GET the value "blue" typed in the form):
But what happens is that it does not take the parameter spv
which was part of the query string in the action, and is at the home of the project (panel.php).
Any suggestions?
When possible post the code and not the image of it, some proxys may block it.
– rray