Skip to content

Instantly share code, notes, and snippets.

@honzajavorek
Created May 23, 2013 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save honzajavorek/5633864 to your computer and use it in GitHub Desktop.
Save honzajavorek/5633864 to your computer and use it in GitHub Desktop.
<p>
<?php
$user_agent = $_SERVER['HTTP_USER_AGENT'];
if (preg_match('/firefox/i', $user_agent)) {
echo "Nazdar lisaku!";
} elseif (preg_match('/chrome/i', $user_agent)) {
echo "Nejsi tak trochu chromy?";
} else {
echo "Neznam te!";
}
?>
</p>
<small><?php echo $user_agent; ?><small>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment