Is there a way to use PHP to detect if the page is being loaded using IE6?
feedback
|
|
Try checking their user agent for
This is based on this user agent information. | |||||||||||||
feedback
|
|
You can detect IE6 with HTML this way
Here's a link on how it's done in PHP but ive seen many false positives in parsing the | |||||
feedback
|
|
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:
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,
| |||||||
feedback
|
|
You can use get_browser with updated browscap.ini file. | |||
|
feedback
|
|
well PHLAK... i think this one is much better :P
| |||||
|
feedback
|
|
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. | |||
|
feedback
|
|
Thanks guys, I ended up creating the following function and calling it as needed:
| |||||||
feedback
|
|
The methods listed will often flag browsers with certain plug-ins (MathPlayer, for instance; as well as some malware toolbars). I find a much more reliable method is:
| |||
|
feedback
|
|
Like everyone else said, there will be false positives by just checking the user agent... so why not use both, user agent checking and a conditional comment. for example...
This way you won't be sending back this unnecessary code to most browsers... but will still be safe in case of a false positive. | |||
|
feedback
|
|
Something simpler:
| ||||
|
feedback
|
|
Note IE8 also specifies that it is IE6 compatible in its user-agent string. | |||
feedback
|
|
very helpful thread. I used this to hide the I'm not sure if its critical to include an opera check yet, but have included it anyway.
| |||
|
feedback
|
| |||
|
feedback
|
|
You can use it for many browsers, but it is time consuming and sometimes false positive...
} | |||
|
feedback
|
|
IE 6 Always starts with "Mozilla/4.0 (compatible; MSIE 6.0;" IE 7,8 have "MSIE 6" in the middle... | |||
|
feedback
|