I'm doing some PHP includes depending on browser, and need to target Chrome on Windows
I've got this to target all IE browsers (MSIE) is there some way I can also target Chrome for Windows?
if (isset($_SERVER['HTTP_USER_AGENT']) &&
(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
return true;