0
My radio input only on this line 3 is repeating the others not. Follows picture for better understanding:
Excerpt from the code where it is repeated...
<div class="section4">
<td>Cumprimento de Horário (pontualidade dos horários de viagens).</td>
<td WIDTH=9 align="center"> <input type="radio" name=" horario" value="A"/> </td>
<td WIDTH=9 align="center"> <input type="radio" name=" horario" value="B"> </td>
<td WIDTH=9 align="center"> <input type="radio" name=" horario" value="C"/> </td>
<td WIDTH=9 align="center"> <input type="radio" name=" horario" value="D"/> </td>
<td WIDTH=9 align="center"> <input type="radio" name=" horario" value="E"/> </td>
<td WIDTH=9 align="center"> <input type="radio" name="horario" value="F"/> </td>
<td WIDTH=9 align="center"> <input type="radio" name="horario" value="G"/> </td>
</div>
Excerpt from the PHP code:
$section4 =isset($_POST["horario"])?$_POST["horario"]:"[nao informado]";
Maybe take this space from the beginning of the name solves?
– DH.