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$x = $_POST['id_ingredientes'];
$um=$_POST['um'];
$cant = $_POST['cant'];
$x_item=$x[$i];
$um_item=$um[$i];
$cant_item=$cant[$i];
echo "$x_item, $um_item, $cant_item";
}