-1
Good morning, This is the form of a question form of mine:
<form class="form-horizontal" action="chk-gerente.php?nro_pergunta=<?php echo $nro_pergunta; ?>" method="GET">
<fieldset>
<legend>Pergunta <?php echo"$ordem";?>/<?php echo"$totalpergunta";?></legend>
<div class="form-group">
<center><h3><label><?php echo"$descpergunta";?></label></h3></center>
<div class="col-lg-10">
<div class="radio"><label><input type="radio" name="resp" id="optionsRadios1" value="5">OTIMO </label></div>
<div class="radio"><label><input type="radio" name="resp" id="optionsRadios2" value="3">REGULAR </label></div>
<div class="radio"><label><input type="radio" name="resp" id="optionsRadios3" value="1">RUIM </label></div>
<div class="radio"><label><input type="radio" name="resp" id="optionsRadios4" value="0">NAO APLICADO </label></div>
</div>
</div>
<?php
$timestamp = @mktime(date("H")-4, date("i"),date("s"),date("m"),date("d"),date("Y"),0);
$DataCad = gmdate("Y-m-d", $timestamp); // Gravar $DataCad no BD
echo"<input type='hidden' name='loja' id='loja' value='$loja'>";
echo"<input type='hidden' name='id_usuario' id='id_usuario' value='$id_usuario'>";
echo"<input type='hidden' name='questionario' id='questionario' value='$questionario'>";
echo"<input type='hidden' name='area' id='area' value='$area'>";
echo"<input type='hidden' name='nro_pergunta' id='nro_pergunta' value='$nro_pergunta'>";
echo"<input type='hidden' name='DataCad' id='DataCad' value='$DataCad'>";
echo"<input type='hidden' name='pergunta' id='pergunta' value='$idpergunta'>";
?>
<div class="form-group">
<div class="col-lg-10 col-lg-offset-2">
<button type="submit" class="btn btn-primary">Responder</button>
</div>
</div>
</fieldset>
</form>
How am I passing a command in the action,how could it be my input in db? I tried to do at the beginning of the page with GET more without success,?
You can use the value passed by parameter by the formaction to say in which the corresponding question, the action parameter, you can also collect by get.
– Brumazzi DB