Skip to content

Instantly share code, notes, and snippets.

@thotbox
Created July 31, 2014 13:43
Show Gist options
  • Save thotbox/578efab7d0bf782fdf59 to your computer and use it in GitHub Desktop.
Save thotbox/578efab7d0bf782fdf59 to your computer and use it in GitHub Desktop.
PHP: IE8 Conditional
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'],'MSIE 8')) {
// IE 8 Stuff
}
else {
// Default Stuff
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment