
19/12/2011, 05:16
|
 | | | Fecha de Ingreso: febrero-2009 Ubicación: Paso del Rey, Buenos Aires, Argentina
Mensajes: 975
Antigüedad: 16 años, 1 mes Puntos: 89 | |
Respuesta: Pluggin de Grid (Usando PHP, jQuery, AJAX) AK la URL oficial... http://api.jquery.com/jQuery.post/
Con Json, intenta esto: Código PHP: $jsondata['total']="28";
$fila['rows1']=$array["productid"]="FI-SW-01"
$fila['rows1']=$array["unitcost"]=10.00;
$fila['rows1']=$array["status"]="P";
$fila['rows1']=$array["listprice"]=16.50;
$fila['rows1']=$array["attr1"]="Large";
$fila['rows1']=$array["itemid"]="EST-1";
$jsondata['rows']=$fila['rows1'];
echo json_encode($jsondata);
|