Have an account? Sign in
Login  Register  Facebook
This Page is Under Construction! - If You Want To Help Please Send your CV - Advanced Web Core (BETA)
[Edit] Detect IE6 using php

The following function will return true if the visitor is using IE6

Save 5,446 ie6
function is_ie6(){
	return strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.') !== FALSE;
}