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 9290 Apr 8, 2007, 12:51 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8869 Apr 9, 2007, 3:11 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8920 Apr 9, 2007, 5:34 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8899 Apr 10, 2007, 2:51 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8850 Apr 10, 2007, 8:08 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8918 Apr 10, 2007, 8:14 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8884 Apr 10, 2007, 8:30 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8909 Apr 12, 2007, 8:00 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8857 Apr 12, 2007, 11:10 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8878 Apr 13, 2007, 1:11 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8807 Apr 13, 2007, 1:36 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8815 Apr 14, 2007, 1:30 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8801 Apr 14, 2007, 1:58 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8794 Apr 14, 2007, 2:04 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8773 Apr 14, 2007, 4:46 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8736 Apr 15, 2007, 2:51 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8769 Apr 15, 2007, 7:47 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
VishalT 8734 Apr 15, 2007, 10:09 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8757 Apr 16, 2007, 12:07 AM
Post Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8756 Apr 17, 2007, 7:17 AM