Well, also i have checked the following where we can notice what a visitor is using more at the time of browsing. We can practically check the agent string the browser sends as part of HTTP request. This is stored in a variable. This normallsy starts with $ in PHP such as follows :
< ?php
echo $_SERVER[ 'HTTP_USER_AGENT' ];
? >
It may show the following result :
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Well, this interests me alot when it comest to statistics or monitoring of the websites.
|