
bueno este es un pedaso de como esta el formulario es un ejemplo lo ke trato de hacer es lo siguiente detro del formulario hay varios campos de tipo select y de tipo text los cuales tengo ke guardar dentro de una BD de datos ke tiene los siguientes campo Nombre de cuenta(text) , DEBE(numerico) , HABER(numerico), totaldebe(numerico) totalhaber(numerico).
el problema

<table width="56%" border="1">
<tr>
<td>
<form name="form1" method="post" action="">
<table width="100%" border="1">
<tr>
<td width="26%">nombre cuenta</td>
<td width="33%">Debe</td>
<td width="41%">Haber</td>
</tr>
<tr>
<td width="26%">
<select name="select">
<option value="<%="Nombre Cuenta"%>"><%="Nombre Cuenta"%></option>
</select>
</td>
<td width="33%">
<input type="text" name="uno">
</td>
<td width="41%">
<input type="text" name="dos">
</td>
</tr>
<tr>
<td width="26%">
<select name="select2">
<option value="<%="Nombre Cuenta"%>"><%="Nombre Cuenta"%></option>
</select>
</td>
<td width="33%">
<input type="text" name="tres">
</td>
<td width="41%">
<input type="text" name="cuatro">
</td>
</tr>
<tr>
<td width="26%">
<select name="select3">
<option value="<%="Nombre Cuenta"%>"><%="Nombre Cuenta"%></option>
</select>
</td>
<td width="33%">
<input type="text" name="cinco">
</td>
<td width="41%">
<input type="text" name="seis">
</td>
</tr>
<tr>
<td width="26%">suma total</td>
<td width="33%">
<input type="text" name="sumadebe">
</td>
<td width="41%">
<input type="text" name="sumahaber">
</td>
</tr>
<tr>
<td width="26%"> </td>
<td width="33%"> </td>
<td width="41%">
<input type="submit" name="Submit" value="Guardar">
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
espero haber explicado bien el problema, desde ya gracias ojala pueden darme ejemplos de como lo puedo hacer...
