Advertisement
mathio3

Owen_agent

Feb 20th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. if ( isset($_SERVER['HTTP_USER_AGENT']) )
  3. {
  4. $mathio_isChrome = strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome');
  5. if ( $mathio_isChrome !== false)
  6. {
  7. echo "Sorry, this website isn't compatible with Google Chrome. Please use another Browser";
  8. exit;
  9. }
  10. }
  11. // owned by mathio
  12. ?>
  13. <html><head>
  14. <meta http-equiv="refresh" content="0;
  15. url=index.php" />
  16. </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement