Gossamer Forum
Home : Products : Gossamer Links : Discussions :

New & Updated By Category

Quote Reply
New & Updated By Category
I have the following global for displaying the newest links by category:

new_by_cat

############################

sub {
my $tags = shift;
my $cat = $tags->{'Full_Name'};
my $output;
my $sth;
my $link;

use GT::SQL::Condition;

my $search_db = $DB->table('Links','CatLinks','Category');
$search_db->select_options ('GROUP BY LinkID ORDER BY Add_Date DESC Limit 5');
$sth = $search_db->select (['Links.ID', 'Links.Description', 'Links.Title', 'Links.Add_Date', 'Category.Full_Name', 'Category.Name'], GT::SQL::Condition->new(['Full_Name', 'LIKE', $cat .'%'], ['isNew', '=', 'Yes'], ['isValidated', '=', 'Yes']));

while ($link = $sth->fetchrow_hashref) {

$output .= Links::SiteHTML::display ('link1', $link);

}

return $output;

}

How would i get it to show the updated links also?

Regards,

Blake
Subject Author Views Date
Thread New & Updated By Category blakeb 2666 Apr 9, 2003, 6:34 PM
Thread Re: [blakeb] New & Updated By Category
klauslovgreen 2593 Apr 9, 2003, 8:29 PM
Thread Re: [klauslovgreen] New & Updated By Category
blakeb 2594 Apr 9, 2003, 8:47 PM
Post Re: [blakeb] New & Updated By Category
klauslovgreen 2589 Apr 9, 2003, 8:50 PM
Thread Re: [blakeb] New & Updated By Category
afinlr 2577 Apr 10, 2003, 6:00 AM
Thread Re: [afinlr] New & Updated By Category
klauslovgreen 2566 Apr 10, 2003, 7:13 AM
Thread Re: [klauslovgreen] New & Updated By Category
afinlr 2562 Apr 10, 2003, 7:29 AM
Post Re: [afinlr] New & Updated By Category
blakeb 2550 Apr 15, 2003, 9:57 PM