FireFox not installed popup

Discussion in 'Programming' started by sp360, Jun 23, 2008.

  1. #1
    Hi, does any one know the code or the site to get the code that informs all IE users that FireFox is not installed or anything like that?
    Thanks, SP360
     
    sp360, Jun 23, 2008 IP
  2. StartHereSoftware

    StartHereSoftware Peon

    Messages:
    56
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Use PHP:

    <?
    
    if(substr_count(strtolower($_SERVER['HTTP_USER_AGENT']),strtolower("firefox")) == 0) {
    // POPUP CODE HERE
    }
    
    ?>
    Code (markup):
     
    StartHereSoftware, Jun 23, 2008 IP