Only showing firefox referrals to IE users

Discussion in 'AdSense' started by MelogKnaj, Jun 8, 2008.

  1. #1
    I looked around online for the code to do this but can't seem to find anything. I would like to show firefox referrals to IE users but link units to Firefox/other browsers. Any idea how to do this?
     
    MelogKnaj, Jun 8, 2008 IP
  2. ckgni

    ckgni Active Member

    Messages:
    208
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    58
    #2
    With PHP it is easy:

    
    <?php
    if(strstr($_SERVER[HTTP_USER_AGENT], "MSIE")){
    ?>
    
    Firefox ad code here
    
    <?php
    }
    else {
    ?>
    
    ad code for other users here
    
    <?php
    }
    ?>
    
    Code (markup):
    I don't know about ASP or other languages. Let the others say about these. :)
     
    ckgni, Jun 8, 2008 IP
  3. almondj

    almondj Peon

    Messages:
    768
    Likes Received:
    11
    Best Answers:
    1
    Trophy Points:
    0
    #3
    I was gonna say css, but that will work too and better.
     
    almondj, Jun 8, 2008 IP