banner rotation script/code

Discussion in 'Programming' started by fuser00, Jan 2, 2007.

  1. #1
    Hi, i own Phpld Owners (www.phpldowners.com) and i change the skin into a more clean one. I want to put a banner rotation script at the top but i couldnt find any good one. I want a script/code to put three 468x60 banners (i currently have one 468x60 and two 120x60) at the main page.

    Thanks, fuser
     
    fuser00, Jan 2, 2007 IP
  2. EvilivE

    EvilivE Peon

    Messages:
    23
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Do you still need help with this?
     
    EvilivE, Jan 7, 2007 IP
  3. fuser00

    fuser00 Well-Known Member

    Messages:
    1,212
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    150
    #3
    Hi, yes

    thanks for the interest
     
    fuser00, Jan 7, 2007 IP
  4. rodney88

    rodney88 Guest

    Messages:
    480
    Likes Received:
    37
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You want it show one 468x60 banner that rotates? I'm not sure how advanced you're after but if you just want it to pick a random banner and display it:
    <?php
    
    $banners = array(
    'http://www.urlforbannertarget.com/blah.php?in=34'   =>    'http://location.of/image.gif',
    'http://urlforbannertarget.com/rah.php?in=85'   		 =>    'http://location.of/image2.gif',
    );
    
    $url = array_rand($banners);
    $image = $banners[$url];
    
    echo <<<HTML
    	<a href="{$url}"><img src="{$image}" border="0" /></a>
    HTML;
    
    ?>
    PHP:
    Or is that not what you meant?
     
    rodney88, Jan 7, 2007 IP
  5. iatbm

    iatbm Prominent Member

    Messages:
    5,151
    Likes Received:
    352
    Best Answers:
    0
    Trophy Points:
    360
    #5
    iatbm, Jan 7, 2007 IP
  6. frisby

    frisby Well-Known Member

    Messages:
    1,378
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    140
    #6
    Sessions not cookies. :p
     
    frisby, Jan 8, 2007 IP
  7. iatbm

    iatbm Prominent Member

    Messages:
    5,151
    Likes Received:
    352
    Best Answers:
    0
    Trophy Points:
    360
    #7
    doesn't matter as long as it works :D
     
    iatbm, Jan 8, 2007 IP