">
<?phpfunction car(){ $car = array("Jeep", "Datsun", "Lada", "spyker"); foreach ($car as $val) { echo "$val\n"; }}car();?>
For each function causes the program to loop through each array value once.
Previous Question Next Question
Your comments will be displayed only after manual approval.