Comunidad de diseño web y desarrollo en internet online

Sumar resultados de una consulta (Array)

Citar            
MensajeEscrito el 24 Oct 2012 03:49 pm
Hol amigos,
este es un parcial de un resultado de una consulta que hago a una tabla

Código HTML :

<table>
while($fila = mysql_fetch_row($resultado1)){ 
<tr>
    <td>'.$fila[1].'</td>
    <td>'.$fila[3].'</td>
    <td>'.$fila[11].'</td>
    <td>'.$fila[11] * (3.5).'</td>
</tr>
<tr>
   <td colspan="2">TOTAL:</td>
     <td> AQUI DEBE IR LA SUMA DE TODOS LOS $fila[11]</td>
     <td> AQUI DEBE IR LA SUMA DE TODOS LOS $fila[11] * (3.5)</td>
</tr>
</table> 

Necesito mostrar la suma de las columnas 3 y 4,

Será que alguien me puede indicar como se hace???

Por insyse

8 de clabLevel



 

Diseñador Web Empirico

chrome
Citar            
MensajeEscrito el 24 Oct 2012 04:20 pm
Lo primero que veo es que no tienes cerrado el while. Supongo que debe ser así:

Código PHP :

<table>
<?php
$suma = 0;
$suma350;
while($fila = mysql_fetch_row($resultado1)){ ?>
<tr>
    <td><?php echo $fila[1]; ?></td>
    <td><?php echo $fila[3]; ?></td>
    <td><?php
    echo $fila[11];
   $suma = $suma + $fila[11];
   ?></td>
    <td><?php
   echo $fila[11] * (3.5);
   $suma350 = $suma350 + ($fila[11]*(3.5));
?></td>
</tr>
<?php
  } // while
?>
<tr>
   <td colspan="2">TOTAL:</td>
     <td><?php echo $suma; ?></td>
     <td><?php echo $suma350; ?></td>
</tr>
</table> 

Por DriverOp

Claber

2510 de clabLevel



 

opera

 

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