Jump to content

PHP/MySQL C


wiggst3r

Recommended Posts

Hi

 

I have several rows in a datebase, each with a count field.

So rows have the following fields: id, friends_count, date

Row 1: 1, 4, 2008-11-19 00:00:00 

Row 2: 2, 5, 2008-11-20 00:00:00 

Row 3: 3, 1, 2008-11-21 00:00:00  etc

 

What I want to do, is loop through the database and get a total of the friends_count.

So the above rows would produce 10.

 

How would I do this?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/140682-phpmysql-c/
Share on other sites

I used the following code:

 

			//Get total of vouchers from cached table
		$friends_cached = $db->db_query("SELECT SUM(total_friends) FROM daily_entries_cache");
		echo "Total Friends is $friends_cached";

 

And go the following error:

 

Total Friends is Resource id #12

 

What am I doing wrong?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/140682-phpmysql-c/#findComment-736286
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.