How to filter Browsers UserAgents with PHP? [duplicate]

if (strpos($_SERVER['HTTP_USER_AGENT'], '(compatible; MSIE ')!==FALSE) {
   //FOR IE
}

more info here http://php.net/manual/en/function.get-browser.php

Leave a Comment