Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$UA = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : "";
$IE = !$OP && !$FF && strstr($UA, 'MSIE') ? true : false;
$IEV = $IE ? preg_split('/msie/i', $UA) : false;
$IEV = $IEV ? floatval($IEV[1]) : false;
if ($IE && $IEV == 7)
{
$css ='<link rel="stylesheet" type="text/css" href="style7.css">';
}
elseif ($IE && $IEV == 6)
{
$css ='<link rel="stylesheet" type="text/css" href="style6.css">';
}else{
$css ='<link rel="stylesheet" type="text/css" href="style.css">';
}