Code:function antiIE() {
echo '<script>
var browserName=navigator.appName;
if (browserName=="Microsoft Internet Explorer")
{
alert("Microsoft imposes restrictions on Internet Explore which make it impossible to render this page. Please download a better browser.");
window.location = "http://www.google.com/chrome";
}
</script>';
}
Why don't websites seriously implement this?

