Navigation:
Home Source code Tutorials RSS feeds Articles Wordpress plugins Blog Books Software Downloads Hosting manuals Script directory Training Our Links
SPONSORS
For loop example
This page shows some for loop examples Example 1
<?php for($i=0 ;$i<10 ; $i++) { echo " $i "; } ?>
Output 0 1 2 3 4 5 6 7 8 9 Example 2
<?php for ($i=9 ; $i>=0 ; $i--) { echo (" $i "); } ?>
Which will give us
9 8 7 6 5 4 3 2 1 0