How to get all information about the users browser in PHP

1 Answer

0 votes
echo "<pre>";
echo $_SERVER['HTTP_USER_AGENT'];
echo "</pre>";


/*
run:

Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; ...

*/

 



answered Jun 27, 2016 by avibootz

Related questions

1 answer 222 views
1 answer 235 views
1 answer 206 views
1 answer 246 views
...