foreach($array as $key=>$value) { // do stuff }
$array = array('a', 'b', 'c'); foreach ($array as $letter=>$index) { echo $letter; //Here $letter content is the actual index echo $array[$letter]; // echoes the array value }//foreach