Php ile browser ın internet explorer olup olmadığını kontrol etme
function detect_ie() {
if (isset($_SERVER[‘HTTP_USER_AGENT’]) &&
(strpos($_SERVER[‘HTTP_USER_AGENT’], ‘MSIE’) !== false))
return true;
else
return false;
}
?>
Php ile browser ın internet explorer olup olmadığını kontrol etme
function detect_ie() {
if (isset($_SERVER[‘HTTP_USER_AGENT’]) &&
(strpos($_SERVER[‘HTTP_USER_AGENT’], ‘MSIE’) !== false))
return true;
else
return false;
}
?>