Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Category Totals

Quote Reply
Category Totals
I'm looking for a way to display the total number of categories, the same way you can display the total number of links.

---------------------------
Administrator
Webmaster Directory Network
Webmaster Stop
Webmaster Focus Network
Quote Reply
Re: [Ice Man] Category Totals In reply to
Try something like this (as a global);

Code:
sub {

my $table = $DB->table('Category');
my $count = $table->count();
return $count;

}

Then just call it in your templates with the name you gave the global.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Category Totals In reply to
Worked perfectly.



Thanks again Andy.

---------------------------
Administrator
Webmaster Directory Network
Webmaster Stop
Webmaster Focus Network