Results 1 to 3 of 3

Thread: Detect the browser?

  1. #1

    Thread Starter
    Member filburt1's Avatar
    Join Date
    Aug 1999
    Posts
    6,935

    Detect the browser?

    PHP Code:
    if (?)
    {
        echo 
    'You\'re using IE';
    }
    else
    {
        echo 
    'You're using something else';

    What's the "?"

  2. #2
    Fanatic Member nabeels786's Avatar
    Join Date
    Jul 2001
    Location
    New York
    Posts
    919
    PHP Code:
    <?
    if(strstr($HTTP_USER_AGENT,"MSIE")){

          print "you are using IE!<br>";
    } else{
          print "you are using $HTTP_USER_AGENT<br>";
    }
    ?>
    Visit www.fragblast.com
    Gaming, forums, and a online RPG/Battle system




    (__Flagg) DOT NET? is this a Hindi Dating service?

  3. #3

    Thread Starter
    Member filburt1's Avatar
    Join Date
    Aug 1999
    Posts
    6,935
    Nifty, cheers

Posting Permissions

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



Click Here to Expand Forum to Full Width