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

Re: [adultdvdlinks] top 5 links global

Quote Reply
Re: [adultdvdlinks] top 5 links global In reply to
This is the global that I'm using to show the newest reviews on the home page:

sub {
# Displays the newest links on the home page.
my ($output, $sth, $review);
my $search_db = $DB->table('Reviews');
$search_db->select_options ('ORDER BY Review_Date DESC');
$sth = $search_db->query_sth ( { Review_Validated => 'Yes' });
my $i=1;
review: while ($review = $sth->fetchrow_hashref) {
my $desc = $review->{Review_Contents};
unless (length $desc <= 30) {my $short = substr ($desc, 0, 30); $short =~ s/\s\S+?$//; $short .= " ..."; $review->{Review_Contents} = $short;}
$output .= Links::SiteHTML::display ('review_new', $review);
last review if ($i>=3);
$i++;
}
return $output;
}


It uses a different template review_new.html which you need to add. You can change the $i>=3 to any number you want. You can see it at theukhighstreet.com.

Hope that helps someone.

Laura.
Subject Author Views Date
Thread top 5 links global adultdvdlinks 14411 May 6, 2002, 12:34 PM
Thread Re: [adultdvdlinks] top 5 links global
Paul 13883 May 6, 2002, 12:37 PM
Post Re: [Paul] top 5 links global
webmaster33 13840 May 7, 2002, 2:39 AM
Post Post deleted by webmaster33
webmaster33 13813 May 8, 2002, 4:32 AM
Thread Re: [adultdvdlinks] top 5 links global
minesite 14003 May 7, 2002, 5:02 AM
Thread Re: [minesite] top 5 links global
adultdvdlinks 13910 May 7, 2002, 10:49 AM
Thread Re: [adultdvdlinks] top 5 links global
adultdvdlinks 13831 May 7, 2002, 3:59 PM
Thread Re: [adultdvdlinks] top 5 links global
Ian 13811 May 7, 2002, 4:03 PM
Thread Re: [sooke] top 5 links global
adultdvdlinks 13897 May 7, 2002, 4:12 PM
Thread Re: [adultdvdlinks] top 5 links global
afinlr 13833 May 8, 2002, 9:08 AM
Thread Re: [afinlr] top 5 links global
Ian 13904 May 8, 2002, 9:52 AM
Thread Re: [sooke] top 5 links global
afinlr 13837 May 8, 2002, 10:04 AM
Post Re: [afinlr] top 5 links global
Ian 13768 May 8, 2002, 10:06 AM
Post Re: [afinlr] top 5 links global
Ian 13770 May 8, 2002, 10:22 AM
Thread Re: [afinlr] top 5 links global
adultdvdlinks 13784 May 8, 2002, 11:02 AM
Thread Re: [adultdvdlinks] top 5 links global
Ian 13823 May 8, 2002, 11:07 AM
Thread Re: [sooke] top 5 links global
adultdvdlinks 13976 May 8, 2002, 11:13 AM
Post Re: [adultdvdlinks] top 5 links global
adultdvdlinks 13747 May 8, 2002, 11:56 AM
Thread Re: [adultdvdlinks] top 5 links global
afinlr 13876 May 8, 2002, 3:22 PM
Thread Re: [afinlr] top 5 links global
pugdog 4528 Mar 6, 2004, 9:58 AM
Post Re: [pugdog] top 5 links global
afinlr 4531 Mar 6, 2004, 10:35 AM
Thread Re: [afinlr] top 5 links global
dmoynihan 13870 Jan 10, 2003, 2:22 PM
Thread Re: [dmoynihan] top 5 links global
romanslon 13421 Sep 17, 2003, 3:43 AM
Post Re: [romanslon] top 5 links global
afinlr 13383 Sep 17, 2003, 12:54 PM
Thread Re: [minesite] top 5 links global
macbethgr 13294 Mar 5, 2004, 8:58 AM
Thread Re: [macbethgr] top 5 links global
minesite 13254 Mar 5, 2004, 2:13 PM
Thread Re: [minesite] top 5 links global
macbethgr 13159 Mar 6, 2004, 5:57 AM
Thread Re: [macbethgr] top 5 links global
afinlr 4555 Mar 6, 2004, 10:40 AM
Thread Re: [afinlr] top 5 links global
macbethgr 4565 Mar 6, 2004, 1:44 PM
Thread Re: [macbethgr] top 5 links global
lastsaga 4503 Nov 4, 2004, 6:46 PM
Post Re: [lastsaga] top 5 links global
Andy 4451 Nov 19, 2004, 7:58 AM