123456/Simon/arrays.php

<!DOCTYPE html> <html lang="en"> <head> <title>Array</title> </head> <body> <?php $hoofdsteden = array('Duitsland' => 'Berlijn', 'Nederland' => 'Amsterdam','België' =>'Brussel','Frankrijk' => 'Parijs'); arsort($hoofdsteden); foreach($hoofdsteden as $land => $hoofdstad){ echo "<div>De hoofstad van $land is $hoofdstad.</div>"; } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse