l106/werkmap/hfst 10.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
$hoofdsteden = ['Nederland' => 'Amsterdam', 'Engeland' => 'London', 'Duitsland' => 'Berlijn'];
$hoofdsteden = array_reverse($hoofdsteden);
foreach($hoofdsteden as $land => $hoofdstad){
echo "<div><i>De hoofdstad van $land is $hoofdstad.</i><div>";
}
?>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse