I can show the values in a database, with a checkbox, but can't retrieve rows I checked
When I submit, the only response that I get is the first row, event that I have checked everyone
Here my code
<table border="1" align="center" valign="center">
<c:forEach var="row" items="${parcelas.rows}">
<form>
<td>
<input type="checkbox" name="id" value="${row.parcelaID}" >
</td>
</form>
<td><c:out value="${row.parcelaID}"/></td>
<td><c:out value="${row.parcelaVencimento}"/></td>
<td ><c:out value="${row.parcelaValor}"/></td>
<td><c:out value="${row.clienteID}"/></td>
<tr></tr>
</c:forEach>
</table>
<input type="submit" value="OK" />
</form>
<c:forEach var="row" items="${param.id}">
<c:out value="${row}"/><br/>
</c:forEach>