Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 03-13-2010, 09:13 AM exc js code
Novice Talker

Posts: 7
Trades: 0
I want the script below to display an Adsense add every 16th instance. Can someone help?
I don't know much PHP but I can usually figure these things out thanks to Google.

PHP Code:
<div id="images">
            <?php while (next_image(false$firstPageImages)): ?>
            <div class="image">
                <div class="imagethumb"><a href="<?php echo htmlspecialchars(getImageLinkURL());?>" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getAnnotatedImageTitle()); ?></a></div>
            <?php endwhile; ?>

</div>
Thank you.
danger_mouse494 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 03-13-2010, 01:46 PM Re: exc js code
NullPointer's Avatar
Will Code for Food

Posts: 2,815
Name: Matt
Location: Irvine, CA
Trades: 0
PHP Code:
<?php
$count 
1;
<
div id="images"
            <?
php while (next_image(false$firstPageImages)): ?> 
     <?php if($count == 16) : ?>
                 ADSENSE CODE HERE
     <?php $count 0; endif; ?>
            <div class="image">
                <div class="imagethumb"><a href="<?php echo htmlspecialchars(getImageLinkURL());?>" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getAnnotatedImageTitle()); ?></a></div> 
     <?php $count++; ?>
            <?php endwhile; ?> 

</div>
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Last edited by NullPointer; 03-13-2010 at 01:47 PM..
NullPointer is online now
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Old 03-14-2010, 02:45 PM Re: exc js code
Novice Talker

Posts: 7
Trades: 0
Thank you NullPointer. Your reply was very helpful.
danger_mouse494 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to exc js code
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.65845 seconds with 12 queries