forealse in php code example
Example 1: foreach php
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement
Example 2: php foreach
<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
foreach($age as $x => $val) {
echo "$x = $val<br>";
}
?>