browser detail

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    browser detail

    i need a coding in which it shows full detail of browser in user profile like

    Opera/9.62 (Windows NT 5.1; U; en) Presto/2.1.1


    anybody please give this coding

    #2
    Originally posted by godzilla View Post
    i need a coding in which it shows full detail of browser in user profile like

    opera/9.62 (windows nt 5.1; u; en) presto/2.1.1


    anybody please give this coding
    ".$_server["http_user_agent"]."

    Comment


      #3
      thank u bro

      how to replace this

      $brws = explode(" ",$_SERVER[HTTP_USER_AGENT] );

      into

      ".$_server["http_user_agent"]."

      Comment


        #4
        $brws = $_SERVER['HTTP_USER_AGENT'];

        Comment


          #5
          this coding not working

          in user profile it shows like

          Browser: O


          i used Opera/9.62 (Windows NT 5.1; U; en) Presto/2.1.1 and i got this browser name in my profile

          Browser: O

          Comment


            #6
            Try:
            PHP Code:
            $brws explode("/ ",$HTTP_USER_AGENT); 
            And enlarge brws char content from table users to show all browser details on user profile ;)

            Comment


              #7
              Originally posted by wolf77ar View Post
              Try:
              PHP Code:
              $brws explode("/ ",$HTTP_USER_AGENT); 
              And enlarge brws char content from table users to show all browser details on user profile ;)
              i couldnt understand wat u mean

              `browserm` varchar(50) NOT NULL default '',

              Comment


                #8
                browserm` varchar(100) NOT NULL default '',

                50 characters is too little
                look how stretched Mozilla for example :P

                Mozilla/5.0 (Windows; U; Windows NT 5.1; ro; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5

                Comment

                Working...
                X