Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Counting Backwards Loop

Mon Oct 27, 2008 12:53 pm

Code:
<html>
<head>
<title>
Counting Backwards
</title>
</head>

<body>
<h1>Counting Backwards</h1>

<?

for ($i = 10; $i > 0; $i--){
  print
"$i <br>\n";
}
// end for loop

?>


</body>
</html>




Post a reply
  Related Posts  to : Counting Backwards Loop
 C++ While loop     -  
 do while loop and for loop C++ example help.     -  
 Do while loop     -  
 While loop     -  
 Why will my loop does not work     -  
 Breaking a Loop     -  
 PIC Assembly For Loop Example     -  
 I NEED SOME HELP IN THE FOR LOOP PLZ .. IAM JUST A BEGINNER     -  
 Using include() Within a Loop     -  
 for statement loop indefinitely     -  

Topic Tags

PHP Loops