Is there a way to use PHP to detect if the page is being loaded using IE6?
Try checking their user agent for 'MSIE 6.'.
'MSIE 6.'
$using_ie6 = (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.') !== FALSE);
This is based on this user agent information.
1.4m articles
1.4m replys
5 comments
57.0k users