<?php
function abcx ($a, $b, $c) {
$D = $b*$b-4*$a*$c;
if ($D > 0) {
$D = sqrt($D);
$x == ($b + $D)/2*a;
$x2 == ($b - $D)/2*a;
return "Два корня, x1 = ", $x, " x2 = ", $x2;
}else if ($D == 0) {
$x == $b/(2*$a);
return "Один корень, x =", $x;
}else if ($D<0) {
return "Нет корней";
}
}
echo abcx($a=2, $b=-4, $c=3);
?>
<div class="warning-ie"> Ваш браузер устарел!!!</div>
.warning-ie{
font-size:30px;
width:100%;
height:100px;
line-height:100px;
text-align:center;
color:#ff0000;
background:#000;
display:none;
}
.show{
display:block;
}
if(detectIE()){
document.querySelector('.warning-ie').classList.add('.show');
}
<?php phpinfo() ?>