View Single Post
Old 07-10-2011, 11:17 AM  
Mamassita
Confirmed User
 
Join Date: Nov 2009
Posts: 252
Advertisement between page redirection ??

Hi,
i need to display an add in between two pages.....i.e. when i post data from 1st page to 2nd page than, i want to display an add before redirecting the 2nd page

How can it be insert into my code ?

PHP Code:
<h2>Title</h2>
        <?php foreach ($this->recommended as $link): ?>
        <div class="box">
            <h3><a href="<?php echo RELATIVE_URL?>/out/?id=<?php echo $link['link_id']; ?>&amp;url=<?php echo e($link['url']); ?>"<?php if ($link['target'] == 'blank'): echo ' target="_blank"'; endif; ?>><?php echo strtoupper(e($link['title'])); ?></a></h3>
            <div class="left">
                <a href="<?php echo RELATIVE_URL?>/out/?id=<?php echo $link['link_id']; ?>&amp;url=<?php echo e($link['url']); ?>"<?php if ($link['target'] == 'blank'): echo ' target="_blank"'; endif; ?>><img src="<?php echo RELATIVE_URL?>/media/images/<?php echo $link['link_id'],'.',$link['ext']; ?>" width="<?php echo $this->lcfg['thumb_width']; ?>" height="<?php echo $this->lcfg['thumb_height']; ?>" alt="<?php echo e($link['title']); ?>" /></a>
            </div>
Thanks!

Something like on this site http://www.poguide.com/

Last edited by Mamassita; 07-10-2011 at 11:28 AM..
Mamassita is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote