I have a dynamic HTML table
<TABLE>
<TR>
<TD align="center">ID Interno</TD>
<TD align="center">UID Externo</TD>
<TD align="center">ID Interno</TD>
<TD align="center">UID Externo</TD>
</TR>
<TR>
<TD><input type="text"/></TD>
<TD><input type="text"/></TD>
<TD><input type="text"/></TD>
<TD><input type="text"/></TD>
</TR>
</TABLE>
I want to go through it and save the contents of its manually filled lines in a database. I'm doing a web application on JAVA and I want to ask if anyone can help me on how to do it using JSF or JSP.