PDA


View Full Version : Combo Forum Stats / Gallery Stats


mholtum
05-22-2005, 02:22 AM
I am using this mod on my site and I would like to add New Uploads to this. Is there an easy way?
Right now it says:
Categories: 12
Images: 271
Posts: 5
Image Views: 9,321
Diskspace: 150.04 MB

I would like to to say:
Categories: 12
Images: 271
New Images: XX
Posts: 5
Image Views: 9,321
Diskspace: 150.04 MB

Brian
05-22-2005, 01:41 PM
Just add this bit of code to the file:
$newimages = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "adv_gallery_images WHERE dateline >= '$bbuserinfo[lastvisit]'");
$newimages['count'] = number_format($newimages['count']);

Then add $newimages[count] to your template.

mholtum
05-22-2005, 03:04 PM
Just add this bit of code to the file:
$newimages = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "adv_gallery_images WHERE dateline >= '$bbuserinfo[lastvisit]'");
$newimages['count'] = number_format($newimages['count']);

Then add $newimages[count] to your template.Which file? Worked like a charm! Thanks!

Loco Macheen
06-01-2005, 11:26 AM
i'm gussing ya edit the index.php file

mholtum
06-01-2005, 01:24 PM
add it to the stats.php file in the modules dir.

Loco Macheen
06-01-2005, 01:36 PM
ah, how did u get that stuff to start with ?


Categories: 12
Images: 271
Posts: 5
Image Views: 9,321
Diskspace: 150.04 MB

I would like to to say:
Categories: 12
Images: 271
Posts: 5
Image Views: 9,321
Diskspace: 150.04 MB

mholtum
06-01-2005, 01:42 PM
http://www.vbadvanced.com/forum/showthread.php?t=5793&highlight=forum+gallery+stats

Loco Macheen
06-01-2005, 03:34 PM
thx