I have this html code using PHP and when i run it i get both responces. What am i doing wrong
<!DOCTYPE html>
<html>
<body>
<h1> Hello User </h1>
<?php
$a = 4;
$b = 4;
if ($a==$b): ?>
<h2> True </h2>
<?php else: ?>
<h2> False </h2>
<?php endif ?>
</body>
</html>
~~~~~