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

Re: [Piers1] Plugin - Random Adsense in Listings

Quote Reply
Re: [Piers1] Plugin - Random Adsense in Listings In reply to
Mmm.. could probably do it in category.html, with:

New Global: get_random_place_to_put_ad

Code:
sub {

my $cat_id = $_[0];

my $tbl = $DB->table('CatLinks','Links');
$tbl->select_options('ORDER BY RAND()','LIMIT 1');

my $id_pos = $tbl->select( { CategoryID => $cat_id } )->fetchrow_hashref;

return { ID_To_Put_Ad_At => $id_pos->{ID} }

}

Call with:

1) At the top of category.html:

<%get_random_place_to_put_ad($category_id)%>

..then, in link.html -

Code:
<%if $ID eq $ID_To_Put_Ad_At%>
..show adsense code here
<%endif%>

Untested, but hopefully that'll work :)

It should select a random link ID, and then, in link.html you can put the adsense code in.

Hope that helps.

Cheers

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!

Last edited by:

Andy: May 12, 2008, 1:37 AM
Subject Author Views Date
Thread Plugin - Random Adsense in Listings Piers1 13282 May 11, 2008, 10:15 AM
Thread Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13212 May 11, 2008, 10:52 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Piers1 13146 May 11, 2008, 2:16 PM
Post Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13149 May 11, 2008, 11:25 PM
Thread Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13196 May 12, 2008, 1:19 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Piers1 13116 May 12, 2008, 1:34 AM
Post Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13169 May 12, 2008, 1:36 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Soren 12942 Jun 8, 2009, 12:12 PM
Thread Re: [Soren] Plugin - Random Adsense in Listings
Andy 13080 Jun 8, 2009, 12:43 PM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Soren 13017 Jun 8, 2009, 3:39 PM
Thread Re: [Soren] Plugin - Random Adsense in Listings
Andy 13030 Jun 9, 2009, 12:18 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
VishalT 12950 Jun 9, 2009, 1:46 AM
Thread Re: [SWDevil.Com] Plugin - Random Adsense in Listings
Andy 13003 Jun 9, 2009, 2:38 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Soren 13000 Jun 9, 2009, 3:50 AM
Thread Re: [Soren] Plugin - Random Adsense in Listings
Andy 12962 Jun 9, 2009, 3:52 AM
Post Re: [Andy] Plugin - Random Adsense in Listings
Soren 12936 Jun 9, 2009, 4:46 AM
Post Re: [Andy] Plugin - Random Adsense in Listings
pugdog 12079 Aug 5, 2010, 11:03 PM