Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/12/2013, 17:08
neocalichin
 
Fecha de Ingreso: enero-2012
Mensajes: 158
Antigüedad: 12 años, 9 meses
Puntos: 1
Respuesta: Arrays problemas

Gracias Amigo ahora cuando ingreso los datos me sale un resultado asi

, Kg, 17, , 0, Uni, 1, , 011, , 0, , 0, , 0, , 0, , 0, , 0, , 0, , 0, , 0, , 0, , 0, , , ,

no me guarda en orden primero
debe guadar el nro de checkbox que pertenece a un Id_ de una tabla

ejemplo 1, kg, 2



Código PHP:
Ver original
  1. $x = $_POST['id_ingredientes'];
  2. $um=$_POST['um'];
  3. $cant = $_POST['cant'];
  4.  
  5. foreach (array_keys($x) as $i) {
  6.   $x_item=$x[$i];
  7.   $um_item=$um[$i];
  8.   $cant_item=$cant[$i];
  9.  
  10. echo "$x_item, $um_item, $cant_item";
  11.  
  12. }