0
I would like to know how to redirect a page through a select
, given that I need the value
of the same.
<select name="setor" id="setor">
<option value="">Selecionar Setor</option>
<option value="age">Agenciamento</option>
<option value="exp">Exportação</option>
<option value="imp">Importação</option>
<option value="int">Internação</option>
<option value="pro">Processos</option>
</select>
Will pass the value by POST or GET?
– Márcio Eric
via post, @Márcioeric.
– Tony Anderson
And why not use the traditional method? <form method="post" .....
– user60252