De verdad no tienes idea? Dudo que ese código lo hayas hecho tú, pero bueno, a ver..
Código PHP:
Ver original$result = count($_POST['cantidad'])-1; $i = 0;
while($i <= $result) {
$result .= "<strong>$descripcion[$i]</strong><br />";
$result .= "<em>CANTIDAD:</em>*".$cantidad[$i]."<br />";
$result .= "<em>PRECIO UNITARIO:</em> ".number_format($precio[$i], 2, ".", ",")."<br />";
$fuck[]=$cantidad[$i]*$precio[$i];
++$i; // Esta instrucción hace que el valor de $i se incremente en 1
}
echo $result;