Wednesday, February 11, 2015

PHP For Loops

,
Contoh PHP For Loops
<!DOCTYPE html>
<html>
<body>
<h1> C C I </h1>
<?php 
for ($x = 0; $x <= 10; $x++) {
   echo "Nomer: $x <br>";
}
?>   

</body>

</html>

0 comments to “PHP For Loops”

Post a Comment