foreach()

Week #5 ARRAYS - Martha's CIS 52

CODE EXAMPLE RESULTS

apple
pear
orange
grape

CODE SCRIPT

$fruits[] = apple;
$fruits[] = pear;
$fruits[] = orange;
$fruits[] = grape;

foreach($fruits as $fruitname) {
echo "$fruitname <br>";
}