Here in this tutorial, I explain how to break down the foreach loop into a for loop(which in turn is a complex while loop).
Here are the sources used in this tutorial:
tut012.php
<?php //PHP Tutorial 012 $array = array(); $array[] = "XS"; $array[] = "S"; $array[] = "M"; $array[] = "L"; $array[] = "XL"; $howMany = count($array); for($x = 0; $x < $howMany; $x++){ $item = $array[$x]; echo $item."<br />"; } foreach($array as $item){ echo $item."_<br />"; } ?>