Guest User

Untitled

a guest
Jul 19th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 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.  
  10. echo $result;
  11. ?>
Add Comment
Please, Sign In to add comment