PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |
Old January 13th, 2005, 01:39 PM   #1 (permalink)
Member
Verified Customer
 
Join Date: Oct 2004
Posts: 151
is there a SUM of all views in one (sub_)Cat?

i'm looking for something along the lines of: $totalviews['catid']

so i can display a SUM of every image view, combined for the one sub_category.

i.e. if i have 5 photos with, 23 views, 48 views, 162 views, 28 views, 100 views,

then my total views for the cat is: 361.

(i hope that's explained well enough)

is there already a $var available, or is it easy to create? also, would the sql query be too intensive for a view of (example) 20 sub cats on page, each with 120 images?
robert_2004 is offline   Reply With Quote
Old January 13th, 2005, 01:45 PM   #2 (permalink)
Brian
Guest
 
Posts: n/a
Re: is there a SUM of all views in one (sub_)Cat?

I wouldn't recommend this on any categories with too many images. The performance hit shouldn't be significant enough to cause any problems on just a few hundred or so though.

$imgview = array();
$imageviews = $DB_site->query("SELECT catid, views FROM adv_gallery_images WHERE catid IN(Your catids here)");
while ($imgviews = $DB_site->fetch_array($imageviews))
{
$imgview["$imgviews[catid]"] += $imgviews['views'];
}

That enough to get you started?
  Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Number of Views magni General Discussion 6 August 29th, 2005 08:37 AM
Albums in assigned cat don't add to cat index count(FIXED) mjm Photopost Pro Bug Reports 26 August 25th, 2005 01:01 PM
how do i remove views? imported_420 How Do I? - vBulletin 3.0.X 5 February 9th, 2005 01:26 PM


All times are GMT -5. The time now is 02:05 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0