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

Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page

Quote Reply
Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page In reply to
Hi,

Try this:

Code:
sub {
my $categoryID = $_[0];
my $tbl = $DB->table('Editors');
$tbl->select_options('LIMIT 1');
my $editor = $tbl->select( { CategoryID => $categoryID } )->fetchrow_hashref;
my $user = $DB->table('Users')->select( { Username=> $editor->{'Username'} } )->fetchrow_hashref;

my $return;

map { $return->{$_} = $user->{$_} } keys %$user;
map { $return->{$_} = $editor->{$_} } keys %$editor;

return $return;
}

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!
Subject Author Views Date
Thread Help: How to Display Editors Profile Info on Category Page VishalT 9048 Apr 8, 2007, 12:51 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8629 Apr 9, 2007, 3:11 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8681 Apr 9, 2007, 5:34 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8660 Apr 10, 2007, 2:51 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8610 Apr 10, 2007, 8:08 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8678 Apr 10, 2007, 8:14 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8645 Apr 10, 2007, 8:30 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8670 Apr 12, 2007, 8:00 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8617 Apr 12, 2007, 11:10 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8639 Apr 13, 2007, 1:11 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8568 Apr 13, 2007, 1:36 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8576 Apr 14, 2007, 1:30 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8561 Apr 14, 2007, 1:58 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8555 Apr 14, 2007, 2:04 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8534 Apr 14, 2007, 4:46 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8497 Apr 15, 2007, 2:51 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8530 Apr 15, 2007, 7:47 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
VishalT 8494 Apr 15, 2007, 10:09 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8517 Apr 16, 2007, 12:07 AM
Post Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8517 Apr 17, 2007, 7:17 AM