Skip to content

Instantly share code, notes, and snippets.

@gabrysiak
Created August 14, 2014 19:50
Show Gist options
  • Save gabrysiak/c8fbab53ada48bcce0f1 to your computer and use it in GitHub Desktop.
Save gabrysiak/c8fbab53ada48bcce0f1 to your computer and use it in GitHub Desktop.
<?php $IE6 = (ereg('MSIE 6',$_SERVER['HTTP_USER_AGENT'])) ? true : false;
$IE7 = (ereg('MSIE 7',$_SERVER['HTTP_USER_AGENT'])) ? true : false;
$IE8 = (ereg('MSIE 8',$_SERVER['HTTP_USER_AGENT'])) ? true : false;
if (($IE6 == 1) || ($IE7 == 1) || ($IE8 == 1)) {
// Do fallback stuff that old browsers can do here
echo "Shit its ie!";
} else { ?>
// do stuff that real browsers can handle here
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment