Ver Mensaje Individual
  #16 (permalink)  
Antiguo 08/01/2009, 12:46
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 7 meses
Puntos: 2
Respuesta: saltar de campo formulario con enter

Repito amigo, la sintaxis de mi codigo es con un foreach:
Código php:
Ver original
  1. <!-- <?php
  2. foreach($carro as $k => $v)               ///FOREACH
  3. {
  4. ?>
  5. <tr>
  6.     <td align="center"><?php echo $v['id'] ?></td>
  7.     <td><?php echo $v['producto'] ?></td>
  8.     <td align="center"><input type="text" name="cantidad[]" size="4" onKeypress="return tabular(event,this);"> ></td>
  9. </tr>
  10. <?php
  11. }
  12. ?> -->