`if` Statement & HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contoh If Statement</title>
</head>
<body>
<?php
$score = 75;
if ($score > 60) : ?>
<p>Selamat, Anda lulus!</p>
<?php endif; ?>
</body>
</html>Penjelasan:
$score = 75;if ($score > 60) : ?> <p>Selamat, Anda lulus!</p> <?php endif; ?>
Last updated