Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » Operating System Name with php
Closed Thread
Old 12-29-2006, 10:20 AM   #1 (permalink)
 
Super Techie

Join Date: Aug 2004

Posts: 277

real_in

Send a message via Yahoo to real_in
Default Operating System Name with php

Hello guys,

can you please help me extracting OS name of a user visiting a page scripted in php ?

I found a function called PHP_UNAME() is this fine, i mean does it work all the time,

also the problem with this function is that it displays my computer name also .. and for windows XP it shows WINNT 5.1 BUILD 2660

how can i get the exact names of all OS like if the person is visiting from other OS then ??


for me here is the output of <?php php_uname() ?>

Windows NT REALIN-7F1A38EB 5.1 build 2600


^^ this is on WINDOWS XP with SP2


thanks a lot
__________________
Realin Wuz here ...

real_in is offline  
Old 01-03-2007, 03:09 AM   #2 (permalink)
 
Newb Techie

Join Date: Jan 2007

Posts: 25

ryno

Default

What php_uname does is return the operating system that php is currently running on (the server). What it looks like you want is the operating system of the client. That's also pretty easy to get.

The environmental variable $_SERVER['HTTP_USER_AGENT'] contains the information you are looking for. It will return a string which will look like the following.

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0

This means the client is running Firefox 2.0 on Windows XP.

Below is a link to the Wikipedia article on user agents. It contains a list of user agents and what browser and OS they are associated with.
http://en.wikipedia.org/wiki/User_agent
ryno is offline  
Old 01-03-2007, 04:35 AM   #3 (permalink)
 
Super Techie

Join Date: Aug 2004

Posts: 277

real_in

Send a message via Yahoo to real_in
Default

thanks a lot mate, this info gonna help a lot ..
__________________
Realin Wuz here ...

real_in is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On