Advertisement
hogash

Untitled

Jan 9th, 2012
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. if (strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox') !== FALSE) $browser .= 'browserFirefox';
  2. elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome') !== FALSE) $browser .= 'browserChrome';
  3. elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== FALSE) $browser .= 'browserOpera';
  4. elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Safari') !== FALSE) $browser .= 'browserSafari';
  5. elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE){
  6. $browser .= 'browserIe';
  7. if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 7.') !== FALSE) $browser .= ' ie7';
  8. elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 8.') !== FALSE) $browser .= ' ie8';
  9. elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 9.') !== FALSE) $browser .= ' ie9';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement