Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/09/2010, 18:49
franjalafa
 
Fecha de Ingreso: julio-2009
Mensajes: 52
Antigüedad: 15 años, 4 meses
Puntos: 4
Datos de datagrid a php

Saludos.

En un datagrid, se ingresan varios valores, quiero mandar estos a php para posteriormente guardarlos en la bbdd.

Anteriormente lo he hecho de la siguiente manera:
Código AS:
Ver original
  1. for (i=0; i<dg_venta.length; i++) {
  2.         guardar.cod_art = dg_venta.getItemAt(i)["Codigo"];
  3.         guardar.descripcion = dg_venta.getItemAt(i)["Descripcion"];
  4.         guardar.cantidad = dg_venta.getItemAt(i)["Cantidad"];
  5.     }
  6.     guardar.sendAndLoad("guardar_salida.php",guardar,"POST");

pero en este momento no me funciona, me podrian decir que estoy haciendo mal????

Gracias por la ayuda.