Possible Duplicate:
Code to parse user agent string?
I'm tracking my user's browsers to better get a feel for their experience (see if there's any connection between a certain browser and a certain behavior). I'm inserting the result of
$_SERVER['HTTP_USER_AGENT'];
into a mysql table. However, I'm not quite sure how to read it. For instance, there was a signup today with the following value:
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2
So which one is it? why is it listing three browsers? How do I read this? You can try this for yourself at: http://www.glassreel.com/whoami.php
Thanks!