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
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
Share on other sites

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.