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.
В пхп удобно с помощью условий вставлять нужный хтмл код между тегами
<?php if ($A>0) { ?>
Hello
<?php }else{ ?>
Bey
<?php } ?>
Как подобное провернуть с помощью javascript ?
<body onload="javascript:test();">
<script>
function test()
{
var a = 3;
if (a>0)
document.getElementById("text").innerHTML = "a>0";
else if (a<0)
document.getElementById("text").innerHTML = "a<0";
else
document.getElementById("text").innerHTML = "a=0";
}
</script>
<p id="text"></p>
</body>