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']; ?>&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']; ?>&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/