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

MyLinks on Home.html --Globals--

Quote Reply
MyLinks on Home.html --Globals--
Hi to all !!!!
I want include MyLinks script on home.html but with a different templates...
trought Template Globals
This Global it's correct ??? :
---------------------------------------------------
sub {
# Displays Mylinks on the home page.
my ($output,$sth,$link);
my $search_db = $DB->table('Links');
$search_db->select_options ('ORDER BY ADD_DATE DESC Limit 5');
$sth = $search_db->select ( { isNew => 'Yes'});
while ($link = $sth->fetchrow_hashref) {
$link->{Title} =~ s,^(.{20}).*$,$1...,;
$output .= Links::User::Favorites::display ('NewTemplate', $link);
}
return $output;
}
--------------------------------------------------
Someone can help me ???


Thanks in Advance
Bye From Italy

Last edited by:

fabio: Feb 27, 2002, 3:45 AM
Quote Reply
Re: [fabio] MyLinks on Home.html --Globals-- In reply to
[b]Nobody can help me ????[/b]


Thanks in Advance
Bye From Italy