- Impact
- 417
What is the correct code to "do something different" for people who use IE <9. All I need is the most dependable browser detection. Like this:
Thanks
EDIT:
Let's change the question to "what is your favorite method?"
Looks like there are "many false positives in parsing the $_SERVER["HTTP_USER_AGENT"] for IE6"
PHP:
<?php
if (ie < 9 "what goes here instead of 'ie < 9'") {
place code here for older IE users ; }
?>
Thanks
EDIT:
Let's change the question to "what is your favorite method?"
Looks like there are "many false positives in parsing the $_SERVER["HTTP_USER_AGENT"] for IE6"
Last edited:






