Comunidad de diseño web y desarrollo en internet online

RARO RARO datos mysql en Array

Citar            
MensajeEscrito el 06 Jun 2018 08:00 am
¡¡Buenas!!
Quería lanzaros una pregunta.
Tengo el siguiente código:

Código PHP :

while($row = $result2->fetch_assoc()) {
   $totcant = $row["q"] * $row["price"];
   $totcanboni = $totcant - (($totcant * $row["boni"]) / 100);
   $tiva = (($totcanboni * $row["iva"]) / 100);
   $tiva1 = number_format($tiva,2,".",",");
   echo $tiva1 . "<br>";
   $preciot = ($totcanboni +(($totcanboni * $row["iva"]) / 100));
   $preciot1 = number_format($preciot,2,".",",");

Bien, el echo me muestra lo siguiente:
19.32
21.00
1.79
3.57
7.14
0.00
9.20
la cosa es que cuando le digo:
echo (array_sum($tiva1));

No muestra nada de nada.

Espero que me puedan ayudar.
Gracias..

Por joaquintous

1 de clabLevel



 

chrome
Citar            
MensajeEscrito el 06 Jun 2018 08:44 am

joaquintous escribió:

¡¡Buenas!!
Quería lanzaros una pregunta.
Tengo el siguiente código:

Código PHP :

while($row = $result2->fetch_assoc()) {
   $totcant = $row["q"] * $row["price"];
   $totcanboni = $totcant - (($totcant * $row["boni"]) / 100);
   $tiva = (($totcanboni * $row["iva"]) / 100);
   $tiva1 = number_format($tiva,2,".",",");
   echo $tiva1 . "<br>";
   $preciot = ($totcanboni +(($totcanboni * $row["iva"]) / 100));
   $preciot1 = number_format($preciot,2,".",",");

Bien, el echo me muestra lo siguiente:
19.32
21.00
1.79
3.57
7.14
0.00
9.20
la cosa es que cuando le digo:
echo (array_sum($tiva1));

No muestra nada de nada.

Espero que me puedan ayudar.
Gracias..

Por joaquintous

1 de clabLevel



 

chrome
Citar            
MensajeEscrito el 06 Jun 2018 12:19 pm
$tiva1 no es un array, sino una variable que vas calculando en cada pasada del while, si lo que quieres es ir sumando agrega algo como
$total = 0;

dentro del while, luego de calcular $tiva

$total = $total+tiva1

No se si el number format te da problema de cast y lo lleva a string, si ese es el caso haz la suma antes del number_format

Jorge

Por solisarg

BOFH

13669 de clabLevel

4 tutoriales
5 articulos

Genero:Masculino   Bastard Operators From Hell Premio_Secretos

Argentina

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.