chcialbym do tego kodu dodac jeszcze przegladarke Opera 9.25 i nizsze, jak to zrobic?
Oto kod PHP:
Kod
<?php
if (array_key_exists('HTTP_USER_AGENT', $_SERVER)) {
$is_ie7 = strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie 7') !== false;
$is_ie6 = strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie 6') !== false;
if (!$is_ie7 && $is_ie6) {
if (intval(mosGetParam($_COOKIE, 'iecheck', 0)) == 1) {
return;
}
} else {
return;
}
} else {
return;
}
?>
if (array_key_exists('HTTP_USER_AGENT', $_SERVER)) {
$is_ie7 = strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie 7') !== false;
$is_ie6 = strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie 6') !== false;
if (!$is_ie7 && $is_ie6) {
if (intval(mosGetParam($_COOKIE, 'iecheck', 0)) == 1) {
return;
}
} else {
return;
}
} else {
return;
}
?>