Hello, can you provide me any help about this issue? I don't know where to start...the site is http://www.actionstream.gr/index.php
thanxs in advance
function isIE6 () {
$msie='/msies(5.[5-9]|[6].[0-9]*).*(win)/i';
$notIE6 = '/msies([7-9].[0-9]*).*(win)/i';
return isset($_SERVER['HTTP_USER_AGENT']) &&
preg_match($msie,$_SERVER['HTTP_USER_AGENT']) &&
!preg_match($notIE6,$_SERVER['HTTP_USER_AGENT']) &&
!preg_match('/opera/i',$_SERVER['HTTP_USER_AGENT']);
}