Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [nir] is Title exist

Quote Reply
Re: [nir] is Title exist In reply to
Should work with this:

check_if_title_exists
Code:
sub {
my $cond = new GT::CGI::Condition;
$cond->add('Title','=',$_[0]);
$cond->add('URL','=',$_[1]);
$cond->bool('OR');

if ($DB->table('Links')->count( $cond ) > 0) {
return { title_exists => 1 }
} else {
return { title_exists => 0 }
}
}

Code:
<%check_if_title_exists($Title,$URL)%>
<%if title_exists%> the title exists <%else%> it doesnt exist <%endif%>

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!
Subject Author Views Date
Thread is Title exist nir 3967 Dec 20, 2009, 6:05 AM
Thread Re: [nir] is Title exist
Andy 3879 Dec 20, 2009, 6:15 AM
Thread Re: [Andy] is Title exist
nir 3858 Dec 20, 2009, 6:20 AM
Thread Re: [nir] is Title exist
Andy 3876 Dec 20, 2009, 6:26 AM
Post Re: [Andy] is Title exist
nir 3847 Dec 21, 2009, 12:30 AM