Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [carminejg3] Detailed pag printing Links and Categories too?

Quote Reply
Re: [carminejg3] Detailed pag printing Links and Categories too? In reply to
How do I make the links show randomly each time the page is refreshed/visited using the code:


sub {
my $tags = shift;
my ($cat_id, $cat_name) = each %{$DB->table('Links')->get_categories($tags->{ID})};
my $link_db = $DB->table('Links','CatLinks');
$link_db->select_options("ORDER BY RAND()","LIMIT 5");
my $sth = $link_db->select({ CategoryID => $cat_id });
my $output = '';
while (my $link = $sth->fetchrow_hashref) {
$output .= Links::SiteHTML::display('link', $link);
}
return $output;
}


The select_options above displays random links but I want the list to change each time the detailed page is visited/refreshed, showing another set of random links from the particular category.

Please help. Thanks



Subject Author Views Date
Thread Detailed pag printing Links and Categories too? Evoir 21403 Dec 13, 2001, 10:23 AM
Thread Re: [Evoir] Detailed pag printing Links and Categories too?
pugdog 20890 Dec 13, 2001, 10:28 AM
Thread Re: [pugdog] Detailed pag printing Links and Categories too?
Evoir 20794 Dec 13, 2001, 11:10 AM
Thread Re: [Evoir] Detailed pag printing Links and Categories too?
Alex 20931 Dec 13, 2001, 12:24 PM
Post Re: [Alex] Detailed pag printing Links and Categories too?
Evoir 20776 Dec 13, 2001, 12:31 PM
Thread Re: [Alex] Detailed pag printing Links and Categories too?
Robert 20686 Feb 17, 2002, 10:39 AM
Thread Re: [Robert] Detailed pag printing Links and Categories too?
AtoZ 20596 Jun 20, 2002, 9:06 PM
Thread Re: [AtoZ] Detailed pag printing Links and Categories too?
flasi 20580 Jun 27, 2002, 1:51 AM
Thread Re: [flasi] Detailed pag printing Links and Categories too?
afinlr 20452 Jun 29, 2002, 5:46 PM
Thread Re: [afinlr] Detailed pag printing Links and Categories too?
flasi 20452 Jul 1, 2002, 3:34 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
afinlr 20433 Jul 1, 2002, 4:00 AM
Thread Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20076 Dec 20, 2002, 4:04 AM
Thread Re: [klauslovgreen] Detailed pag printing Links and Categories too?
flasi 20068 Dec 20, 2002, 4:37 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20103 Dec 20, 2002, 5:14 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20044 Dec 20, 2002, 6:38 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20100 Dec 22, 2002, 8:32 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
nt6 20456 Jul 1, 2002, 5:06 AM
Post Re: [AtoZ] Detailed pag printing Links and Categories too?
afinlr 20434 Jun 29, 2002, 4:44 PM
Post Re: [Alex] Detailed pag printing Links and Categories too?
nt6 20275 Aug 20, 2002, 6:52 AM
Thread Re: [Alex] Detailed pag printing Links and Categories too?
craven32 19649 Sep 30, 2003, 9:53 PM
Thread Re: [craven32] Detailed pag printing Links and Categories too?
craven32 19603 Oct 1, 2003, 10:25 PM
Thread Re: [craven32] Detailed pag printing Links and Categories too?
yogi 19545 Oct 1, 2003, 10:53 PM
Post Re: [yogi] Detailed pag printing Links and Categories too?
craven32 19546 Oct 2, 2003, 7:51 AM
Thread Re: [Alex] Detailed pag printing Links and Categories too?
mick31 19335 Apr 26, 2004, 5:11 AM
Thread Re: [mick31] Detailed pag printing Links and Categories too?
carminejg3 18843 Apr 28, 2006, 12:37 AM
Post Re: [carminejg3] Detailed pag printing Links and Categories too?
afinlr 5222 May 4, 2006, 3:47 PM
Thread Re: [carminejg3] Detailed pag printing Links and Categories too?
Eraser 5217 May 26, 2006, 10:46 AM
Post Re: [Eraser] Detailed pag printing Links and Categories too?
afinlr 5153 May 29, 2006, 12:15 PM
Thread Re: [carminejg3] Detailed pag printing Links and Categories too?
Bruha 5207 Nov 22, 2006, 11:31 AM
Post Re: [Bruha] Detailed pag printing Links and Categories too?
Bruha 5097 Dec 4, 2006, 1:51 PM
Post Re: [carminejg3] Detailed pag printing Links and Categories too?
Robert 4130 Aug 1, 2016, 2:10 PM