Código PHP:
Ver original
//CONSULTO LA EXISTENCIA DEL PRODUCTO Y LA ACTUALIZO $sql = mysql_query("select * from productos where cod_producto='".$cod_producto[$i]."'") or die(mysql_error()); echo $array['existencia']; echo "<br>"; $prod=$array['existencia']-$cod_producto[$i]; mysql_query("update productos set existencia = '".mysql_real_escape_string($prod)."' where cod_producto = '".$cod_producto[$i]."'") or die(mysql_error());