02.5: For Loops

What if we want to set our loops test variable value before we start our loop? PHP offers for loops that let us do just that.


https://www.youtube.com/watch?v=mKBT0klDFkM





<?php
# * for loops

for ($i = 0; $i < 10; $i++)        {
    print "i: $i\n";
}

# * Exercise: Update the Fahrenheit to Celsius conversion program from 
# * a while loop to a for loop.  Going from 0 to 300f.  

?>