adsense color rotator script

Discussion in 'PHP' started by balkanboy, Nov 7, 2005.

  1. #1
    I sow in one tread on this forum that you were speaking about google adsense color rotator on this site. Wuold you share php code(or script) with me for linkback or you are selling that or you save it only for yourself?
     
    balkanboy, Nov 7, 2005 IP
  2. Shoemoney

    Shoemoney $

    Messages:
    4,474
    Likes Received:
    588
    Best Answers:
    0
    Trophy Points:
    295
    #2
    in your adsense settings just pick more then 1 and it will rand for you.
     
    Shoemoney, Nov 7, 2005 IP
  3. balkanboy

    balkanboy Banned

    Messages:
    1,950
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    0
    #3
    How to do it?
     
    balkanboy, Nov 8, 2005 IP
  4. Dread

    Dread Peon

    Messages:
    323
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Dread, Nov 8, 2005 IP
  5. anton-io!

    anton-io! Active Member

    Messages:
    540
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    58
    #5
    Shoemoney ... that is cool, never noticed that! nice!

    In adsense, when selecting Color palettes, simply follow the instructions. Hold down CTRL and select more than one.

    or ...

    find a php randomizer script, modify and place the code within it ...

    simple example:

    
    
    <?
    // Simple Random 
    $txtScripts = array(
    	"Place Google Script here ...", 
    	"Place some other script here ...", 
    	"Place another google adsense script here ....", 
    	); 
    
    srand(time()); 
    $random = (rand(0, 2)); 
    $display_this_one = $txtScripts[$random];
    echo $display_this_one;
    ?>
    
    
    Code (markup):
     
    anton-io!, Nov 8, 2005 IP