Contoh PHP while Loops
<!DOCTYPE html>
<html>
<body>
<h1> C C I </h1>
<?php
$x = 1;
while($x <= 5) {
echo "Nomer: $x <br>";
$x++;
}
?>
</body>
</html>
Wednesday, February 11, 2015
Subscribe to:
Post Comments (Atom)