SitePoint Sponsor

User Tag List

Results 1 to 4 of 4

Thread: Help with simple Adsense rotator (80%/20%) please

  1. #1
    SitePoint Enthusiast
    Join Date
    May 2006
    Posts
    78
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Help with simple Adsense rotator (80%/20%) please

    I have various 'code snippets' which rotate photos, pick random numbers, ect.
    This is something I can figure out, but I'm looking for a quick simple solution (without using PHPadsNew, for example)
    ~~~~~~~~~~~~
    All I need is
    • 'sharerev.php' (for example) which contains only the Adsense code for a writer, mod, or admin.
    • ...and 'myrev.php' which has only my Google ad code
    • Now I need a flexable, easy way to 'give 80%' to sharing
    • and have mine appear ~20% of the time


    I'm 'OK' at modifying code, and just starting to learn to actually write.
    Please, give a 'basic framework' for randomly having one PHP file called on ~80% of the time, and just some ideas on a simple, basic 'actual usage example.'

    Thank you very much.

  2. #2
    Worship the Krome kromey's Avatar
    Join Date
    Sep 2006
    Location
    Fairbanks, AK
    Posts
    1,618
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PHP Code:
    $prob 80//probability of showing your first one
    $rand mr_rand(1,100); //random probability
    if($rand $prob)
        include(
    "inc1.php"); //will show up $prob percent of the time
    else
        include(
    "inc2.php"); 
    PHP questions? RTFM
    MySQL questions? RTFM

  3. #3
    SitePoint Enthusiast
    Join Date
    May 2006
    Posts
    78
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Much better than what I found searching in Google!

    Thank you so much

  4. #4
    Worship the Krome kromey's Avatar
    Join Date
    Sep 2006
    Location
    Fairbanks, AK
    Posts
    1,618
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Woot! I trumped Google!!
    PHP questions? RTFM
    MySQL questions? RTFM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •