PHP Programing language

adplus-dvertising
How can create a forward counting
Previous Home Next

<html>
<head>
<title>
Counting Forward
</title>
</head>
<body>
<h1>Counting Forward</h1>
<?php
for ($i = 10; $i < 0; $i++){
  print "$i <br>";
} // end for loop
?>
</body>
</html>



Previous Home Next