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

Re: [antoined] random link on main page from a specified category

Quote Reply
Re: [antoined] random link on main page from a specified category In reply to
Hi,

You could try this;

<%global_name($ID)%>

..where $ID == the category ID.

Code:
sub {

my $current_cat = $_[0];

my $seed = localtime;
my $table = $DB->table('CatLinks');
$table->select_options('ORDER BY RAND($seed)','LIMIT 1');
my $linkid = $table->select( ['LinkID'], { CategoryID => $current_cat } )->fetchrow;

my $link = $DB->table('Links')->get($linkid);
my $html = Links::SiteHTML::display('link', $link);
return $html;

}

Untested, but should work :)

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!

Last edited by:

Andy: Apr 13, 2005, 1:11 AM
Subject Author Views Date
Thread random link on main page from a specified category antoined 4925 Apr 12, 2005, 6:47 AM
Thread Re: [antoined] random link on main page from a specified category
antoined 4824 Apr 12, 2005, 8:39 AM
Thread Re: [antoined] random link on main page from a specified category
Andy 4850 Apr 12, 2005, 9:29 AM
Thread Re: [Andy] random link on main page from a specified category
antoined 4793 Apr 12, 2005, 9:43 AM
Thread Re: [antoined] random link on main page from a specified category
Andy 4789 Apr 12, 2005, 9:46 AM
Thread Re: [Andy] random link on main page from a specified category
antoined 4795 Apr 12, 2005, 9:58 AM
Thread Re: [antoined] random link on main page from a specified category
katabd 4739 Apr 12, 2005, 5:13 PM
Thread Re: [katabd] random link on main page from a specified category
antoined 4731 Apr 13, 2005, 4:46 AM
Post Re: [antoined] random link on main page from a specified category
katabd 4752 Apr 13, 2005, 6:43 AM
Post Re: [antoined] random link on main page from a specified category
Andy 4698 Apr 14, 2005, 1:41 AM
Post Re: [antoined] random link on main page from a specified category
afinlr 4696 Apr 14, 2005, 5:55 AM