vote up 8 vote down star

Is there a way to use PHP to detect if the page is being loaded using IE6?

flag

Any particular reason you want to do this? – staticsan Mar 23 at 0:55
haha lets kill ie6 bringdownie6.com – lock Mar 23 at 3:33
Because it is old and time consuming to develop for and sometimes you want to just redirect them to a crappy, old version of your site. – rpflo Oct 1 at 17:04

8 Answers

vote up 12 vote down check

Try checking their user agent for 'MSIE 6.'.

$using_ie6 = (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.') !== FALSE);

(This is based on the user agent information found here: http://www.useragentstring.com/pages/Internet%20Explorer/.)

link|flag
1  
This will often match Opera as well, because Opera often adds "MSIE 6.0" within their user-agent string. – thomasrutter Mar 23 at 3:35
vote up 1 vote down

You can detect IE6 with HTML this way

<!--[if IE 6]>
// ie6 only stuff here
<![endif]-->

Here's a link on how it's done in PHP but ive seen many false positives in parsing the $_SERVER["HTTP_USER_AGENT"] for IE6

link|flag
vote up 5 vote down

You can use get_browser with updated browscap.ini file.

link|flag
This sounds interesting, I'll give it a try. – PHLAK Mar 23 at 0:57
vote up 3 vote down

You can, using the HTTP User-Agent header, but I'd strongly advise not doing that if possible. The User-Agent header is very very difficult to parse accurately, and tends towards false positives with simple string matching — even ignoring the issue of browsers that pretend to be other browsers. For example Jeremy's “MSIE 6.” string will match IE Mobile, which is so very different from IE6 that you generally don't want to conflate them.

Plus when you send different HTML to different browsers, you have to use the ‘Vary’ header (which makes caches less effective) to avoid that caches send the wrong pages to different browsers.

So if you can find another place to do the browser differentiation that's definitely best. Ólafur's approach with conditional comments is usually the simplest approach for changing JavaScript and HTML markup/CSS links.

link|flag
vote up 0 vote down

Thanks guys, I ended up creating the following function and calling it as needed:

// IE6 Check
function isIE() {
  $userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);
  if (ereg("msie 6.0", $userAgent)) {
    return true;
  } else {
    return false;
  }
}
link|flag
Quick tip: use the preg functions in PHP instead of ereg, they're faster. uk.php.net/manual/en/… – DisgruntledGoat Mar 24 at 0:57
Scratch that, you shouldn't be using a regular expression function at all if you're only checking for the existence of a string. Use strpos as the answer above suggests. – DisgruntledGoat Mar 24 at 0:59
vote up 2 vote down

Many of the user-agent based answers on this page aren't too reliable because Opera often identifies itself with a user-agent string containing "MSIE 6.0", such as:

Mozilla/4.0 (compatible; MSIE 6.0; X11; Linux i686; en) Opera 9.51

This affects all versions of Opera 5 through 9 and even Opera 10 and can be turned on or off from within Opera. See this page.

A common approach I've seen is to test for "MSIE" and against "Opera". For example,

if (preg_match('/\bmsie 6/i', $ua) && !preg_match('/\bopera/i', $ua))
  echo "We have IE6!";
link|flag
vote up 0 vote down

well PHLAK...

i think this one is much better :P

  if(preg('/(?i)msie [1-6]/',$_SERVER['HTTP_USER_AGENT'])) {
   // if IE<=6
  } else {
   //if IE>6
  }
link|flag
vote up 0 vote down

Function is preg_match() instead of preg(), but good !

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.