Advertisement between page redirection ??

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mamassita
    Confirmed User
    • Nov 2009
    • 252

    #1

    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, 10:28 AM.
  • SmokeyTheBear
    ►SouthOfHeaven
    • Jun 2004
    • 28609

    #2
    looks like you only have 2 variables , so you make a simple php page in the out folder say called ad.php

    Code:
    <?php
    $url = $_GET["url"];
    $id = $_GET["id"];
    ?>
    <html>
    <head>
    <meta http-equiv="refresh" content="15; url=index.php?url=<?php echo $url; ?>&amp;id=<?php echo $id;?>">
    </head>
    <body>
    this is where you would see an ad, this page will automatically refresh to target in 15 seconds
    
    <a href="index.php?url=<?php echo $url; ?>&amp;id=<?php echo $id;?>">CLICK HERE TO SKIP AD</a>
    </body>
    </html>
    then change the existing link code you have from /out/? to /out/ad.php?
    hatisblack at yahoo.com

    Comment

    • SmokeyTheBear
      ►SouthOfHeaven
      • Jun 2004
      • 28609

      #3
      Code:
      <h2>Title</h2> 
              <?php foreach ($this->recommended as $link): ?> 
              <div class="box"> 
                  <h3><a href="<?php echo RELATIVE_URL; ?>/out/ad.php?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/ad.php?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>
      hatisblack at yahoo.com

      Comment

      • SmokeyTheBear
        ►SouthOfHeaven
        • Jun 2004
        • 28609

        #4
        your welcome
        hatisblack at yahoo.com

        Comment

        • Inter-Sex
          Confirmed User
          • Nov 2005
          • 2231

          #5
          bump 4 Smokey

          Comment

          • marlboroack
            So Fucking Banned
            • Jul 2010
            • 9327

            #6
            Hell yah mon

            Comment

            • EZRhino
              Confirmed User
              • Jul 2003
              • 6258

              #7
              Thanks Smokey.

              Comment

              • Fenris Wolf
                Confirmed User
                • Nov 2005
                • 1059

                #8
                I was actually looking for something like this. Thanks Smokey.
                Email: fenris_wolf3000 (a t ) yah00 . c 0 m

                Comment

                Working...