Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [rsahertian] jump to main-cats with a drop-down menu...

Quote Reply
Re: [rsahertian] jump to main-cats with a drop-down menu... In reply to
Try the following global

sub {
my $tags = shift;
my $cat_db = $DB->table('Category');
$cat_db->select_options("ORDER BY Full_Name");
my @root_cats = $cat_db->select (['Full_Name'])->fetchall_list;
my $output;
foreach my $root_cat (@root_cats) {
my $url = $cat_db->as_url($root_cat);
$output .= qq~<option value="$root_cat">$root_cat~;
}
return $output;
}
Regards
KaTaBd

Users plug In - Multi Search And Remote Search plug in - WebRing plug in - Muslims Directory
Subject Author Views Date
Thread jump to main-cats with a drop-down menu... rsahertian 2685 Aug 11, 2003, 6:04 AM
Thread Re: [rsahertian] jump to main-cats with a drop-down menu...
katabd 2617 Aug 11, 2003, 8:34 PM
Thread Re: [katabd] jump to main-cats with a drop-down menu...
rsahertian 2599 Aug 12, 2003, 1:14 AM
Thread Re: [rsahertian] jump to main-cats with a drop-down menu...
katabd 2586 Aug 12, 2003, 4:33 AM
Thread Re: [katabd] jump to main-cats with a drop-down menu...
webslicer 2566 Aug 14, 2003, 12:41 PM
Post Re: [webslicer] jump to main-cats with a drop-down menu...
katabd 2550 Aug 14, 2003, 12:47 PM