Foreach Demo$list = array("A", "B", "C", "D", "E");print "\n";foreach ($list as $value){ print " $value\n";} // end foreachprint "\n";?>