1
I’m using a loop to show all the answers in a respective column of my bd. But I need to add all the numbers contained in that array.
Code I’m using:
<?php
$host = "xxx";
$db = "xxx";
$user = "xxx";
$pass = "xxx";
// conecta ao banco de dados
$con = mysql_pconnect($host, $user, $pass) or trigger_error(mysql_error(),E_USER_ERROR);
// seleciona a base de dados em que vamos trabalhar
mysql_select_db($db, $con);
// cria a instrução SQL que vai selecionar os dados
$query = sprintf("SELECT totalPrice, Time FROM deposits ORDER BY Time ASC");
// executa a query
$dados = mysql_query($query, $con) or die(mysql_error());
// transforma os dados em um array
$linha = mysql_fetch_assoc($dados);
// calcula quantos dados retornaram
$total = mysql_num_rows($dados);
?>
<html>
<head>
<title>Investimentos</title>
</head>
<body>
<?php
// se o número de resultados for maior que zero, mostra os dados
if($total > 0) {
// inicia o loop que vai mostrar todos os dados
do {
?>
<p><?=$linha['totalPrice']?>$</p>
<?php
// finaliza o loop que vai mostrar os dados
}while($linha = mysql_fetch_assoc($dados));
// fim do if
}
?>
</body>
</html>
<?php
// tira o resultado da busca da memória
mysql_free_result($dados);
the result of this array is like this:
120$
-100$
400$
-150$
500$
-460$
100$
-290$
100$
-295$
120$
180$
-600$
-700$
-100$
1200$
100$
-200$
100$
600$
-120$
I need here at the end to be the total sum of those numbers, someone can help?
Deivid, I reversed the last issue of your question because the idea here is to keep the original question. Here we do not write "solved" on the question. If you have an answer that really helped you, mark it as accepted. If you arrived at the solution yourself, post the solution as an answer. So content is more organized and easier to find in the future by other people with similar problems.
– gmsantos