l200/Hoofdstuk 10/10.4.10.2.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
$fruitschaal['Banaan']='Geel';
$fruitschaal['Appel']='Rood';
$fruitschaal['Kiwi']='Groen';
$fruitschaal['Mango']='Geel';
asort($fruitschaal);
foreach($fruitschaal as $kleur => $fruit){
echo "<div>De kleur van een $fruit is $kleur.<div>";
}
?>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse