Gossamer Forum
Quote Reply
Get Full_Name
Hello everybody

i am so stupidFrown

i want to use following global but i don't know how to get the Full_Name

sub {
my $output;
my $cat_db = $DB->table('Category');
my $cat_id = $_[0];
$cat_db->select_options('ORDER BY Full_Name');
my $sth = $cat_db->select ( {'Name' => $cat_id}, ['ID','Full_Name','Name'] );
while (my ($id,$cat,$heading) = $sth->fetchrow_array) {
my $linkdb = $DB->table('Links','CatLinks');
my $url = $cat_db->as_url($cat);

$output .= qq~$heading (<a href="/$url">FULL_NAME</a><br>)~;
}
return $output;
}


please help me again

MarinaFrown
Subject Author Views Date
Thread Get Full_Name mkoenig 2904 Jan 15, 2004, 4:45 AM
Thread Re: [mkoenig] Get Full_Name
Andy 2835 Jan 15, 2004, 5:57 AM
Thread Re: [Andy] Get Full_Name
mkoenig 2819 Jan 15, 2004, 7:49 AM
Thread Re: [mkoenig] Get Full_Name
Andy 2844 Jan 15, 2004, 8:03 AM
Thread Re: [Andy] Get Full_Name
mkoenig 2829 Jan 15, 2004, 8:09 AM
Thread Re: [mkoenig] Get Full_Name
Andy 2815 Jan 15, 2004, 8:12 AM
Post Re: [Andy] Get Full_Name
mkoenig 2803 Jan 15, 2004, 8:18 AM