Guest User

Untitled

a guest
Jul 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?
  2. $agent = getenv("HTTP_USER_AGENT");
  3.  
  4. if (preg_match("/MSIE/i", "$agent")) {
  5. $result = "You are using Microsoft Internet Explorer.";
  6. } else if (preg_match("Mozilla", "$agent")) {
  7. $result = "You are using Mozilla Firefox.";
  8. } else {$result = "You are using $agent";}
  9. ?>
Add Comment
Please, Sign In to add comment