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

Re: [Paul] Global Compile Error

Quote Reply
Re: [Paul] Global Compile Error In reply to
woo hoo, got it!

Code:


sub {

#return the Full_Name for a category based on the category_id available in browser_category.html

my $cat;
my ($rec) = @_;
my $category_id = $rec->{category_id};

my ($cat) = $DB->table('Category')->select(['Full_Name'],{' ID' => $category_id})->fetchrow_array;
return $cat;

}


I now just need to tweak it so it can show a condensed version of this ie:

Travel and Tourism/.../Ontario/Niagra

(Top level and last two only)

Smile
Subject Author Views Date
Thread Global Compile Error Ian 4088 May 13, 2002, 2:18 PM
Thread Re: [sooke] Global Compile Error
Paul 3998 May 13, 2002, 2:31 PM
Thread Re: [Paul] Global Compile Error
Ian 3998 May 13, 2002, 2:56 PM
Thread Re: [sooke] Global Compile Error
Paul 4011 May 13, 2002, 3:00 PM
Thread Re: [Paul] Global Compile Error
Ian 3983 May 13, 2002, 3:11 PM
Thread Re: [sooke] Global Compile Error
Paul 3985 May 13, 2002, 3:41 PM
Post Re: [Paul] Global Compile Error
Ian 3956 May 13, 2002, 4:06 PM
Thread Re: [sooke] Global Compile Error
webmaster33 3976 May 14, 2002, 1:39 AM
Post Re: [webmaster33] Global Compile Error
Ian 3954 May 14, 2002, 7:50 AM