Jump to content

Adding all the results from all the fields.


u214

Recommended Posts

What you are looking for is the SUM mysql function. For example

 

$res = mysql_query("SELECT SUM(kills) as num_kills FROM playerinfo WHERE kills > 0");
$row = mysql_fetch_array($res);
echo "There are : ". $row['num_kills']." total kills";

 

EDIT: bah sniped, but ill post anyways, as I have an example

Hello. Thanks for the feedback.

 

I try doing it this way:

$total_kills = mysql_query("SELECT SUM(kills) FROM playerinfo", $connect);
echo $total_kills;

 

That outputs: "Resource id #5"

 

mysql_query only gives you the id location in the database. You have to apply that to an array to actually pull data out of it. Use:

 

$total_kills=mysql_fetch_array($total_kills)

 

directly after

$total_kills = mysql_query("SELECT SUM(kills) FROM playerinfo", $connect);

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.