Pesquisar na Comunidade
Mostrando resultados para as tags ''soma total''.
Encontrado 1 registro
-
Olá, Senhores estou criando um sistema de carrinho de compras, ele esta funcionando já em adicionar produtos no carrinho e ate em fazer o sub-total em cada linha, mas meu problema é em fazer ele somar todos os subtotais gerando um total, alguém pode me ajudar? Esta aqui o codigo: <?php $busca = mysql_query("select * FROM prodc where idc='".$nomez."' order by -Id "); while($anu = mysql_fetch_array($busca)){ $id = $anu["id"]; $produto = $anu["produto"]; $quantidade = $anu["quantidade"]; $valor = $anu["valor"]; ?> </p> <table width="519" border="0"> <tr> <th width="6" scope="row"> </th> <th width="63" bgcolor="#999999" scope="row">Codigo</th> <th width="306" bgcolor="#999999" scope="row">Produto</th> <th width="58" bgcolor="#999999" scope="row">Quant.</th> <th width="64" bgcolor="#999999" scope="row">Valor</th> <th width="64" bgcolor="#999999" scope="row">Sub.Total</th> </tr> <tr> <th scope="row"> </th> <th bgcolor="#CCCCCC" scope="row"><span class="blue"> oo<?=$id?> </span></th> <th bgcolor="#CCCCCC" scope="row"><span class="blue"> <?=$produto?> </span></th> <th bgcolor="#CCCCCC" scope="row"><span class="blue"> <?=$quantidade?> </span></th> <th bgcolor="#CCCCCC" scope="row"><span class="blue"> <?=$valor?> </span></th> <th bgcolor="#CCCCCC" scope="row"><?php echo $quantidade * $valor; ?> </th> </tr> </table> <? } ?><p>Total: <<<<<<<<< é AQUI ONDE EU ESTOU QUEBRANDO A CABEÇA PARA SOMAR TUDO... como está já aparece esses resultados... como podem ver so falta somar os sub-totais.
- 2 respostas
-
- soma total
- soma
-
(e %d mais)
Tags: