Wednesday, February 11, 2015

PHP while Loops

,
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>

0 comments to “PHP while Loops”

Post a Comment