How can i detect any-IE in php , if any-ie then continue open page,
else non-ie this page can't open page then show error?
I'm using $_SERVER['HTTP_USER_AGENT'] to detect user's browser..
thx u lot.
How can i detect any-IE in php , if any-ie then continue open page,
else non-ie this page can't open page then show error?
I'm using $_SERVER['HTTP_USER_AGENT'] to detect user's browser..
thx u lot.
$browser = get_browser(null, true);
if($browser['browser'] != 'Internet Explorer') {
die('Only IE');
}