Jump to content

Recommended Posts

I have populated and array with values from a table column. There are only three values returned 25, 35, and 50. How can I echo the sum of the numbers?

 

$query = "SELECT worth FROM onlinegm"; 
$result = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_array($result)){
echo $row['worth'];
echo "<br />";
}

Link to comment
https://forums.phpfreaks.com/topic/148640-adding-math-array-values/
Share on other sites

 

Thanks, I've been trying without success.

 

$query = "SELECT worth FROM onlinegm"; 
$result = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_array($result)){
echo $row['worth'];
echo "<br />";
}

echo "Sum of values = ".array_sum($row['worth'])."<br>"; 

$query = "SELECT worth FROM onlinegm";
$result = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_array($result)){
   echo $row['worth'];
   $values[] = $row['worth'];
   echo "<br />";
}

echo "Sum of values = ".array_sum($values)."<br>"; 

 

or.. if you don't actually need to store those values in array

 

$query = "SELECT worth FROM onlinegm";
$result = mysql_query($query) or die(mysql_error());
$sum = 0;
while($row = mysql_fetch_array($result)){
   echo $row['worth'];
   $sum += $row['worth'];
   echo "<br />";
}

echo "Sum of values = $sum<br>"; 

 

Thanks again.

 

I prefer the first method of pushing data into array as it's consistent with data use in actionscript. I made the mistake of assuming the returned data was already in an array and available for purge. I did this with some concepts last night as well.

 

Your help is appreciated!

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.