![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
Estoy ahora trabajando con tablas. Tengo una entrada tipo input,+- asi:
Código HTML:
while ( $nRow < $nLen ) { $reg = $detalle[ $nRow ]; echo "<tr>"; echo "<td>".$nRow."</td>"; echo "<td><input name='pos_dte_" .$nRow . "' type='text' value=" . $reg[ 2 ] ." size='4'></td>"; echo "</tr>"; $nRow++; }
Código PHP:
$detalle = $_SESSION[ 'posicion' ];
$len = count($detalle);
for( $n = 0; $n < $len; $n++ ) {
$ctat = $_POST[ 'pos_dte_' . $n ];
$detalle[$n][2] = $ctat;
}
$_SESSION[ 'posicion' ] = $detalle;
Gracias por vuestros consejos.
![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
Ciao.
Savi