function ie_bul(){
    if (isset($_SERVER['HTTP_USER_AGENT']) && 
    (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
        return true;
    else
        return false;
}
if(ie_bul()){
echo 'internet explorer kullanıyorsunuz';
}else{
echo 'internet explorer kullanmıyorsunuz';
}