Jump to content

[SOLVED] SUM doesn't work


ayok

Recommended Posts

Hi,

I have this table

id          total

1           34

1           32

1           45

2           64

2           54

etc.

I want to sum the column total based on the id. So I made this mysql query.

<?php $sum = ("SELECT SUM(total),id FROM list GROUP BY id") or DIE(mysql_error());
$total = mysql_fetch_array($sum);

echo $total['sum(total)'];

But I've got blank result.

 

Could anybody tell me what's wrong?

 

Thank you

ayok

Link to comment
https://forums.phpfreaks.com/topic/83838-solved-sum-doesnt-work/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.