how to detect internet explorer and firefox using PHP?
To detect Firefox
$isFirefox = (strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox') > -1);
To detect IE
$isIe = (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE ') > -1);