l114/h10/10.3.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 = array ('appel','banaan','peer','sinaasappel', 'framboos'); asort($fruitschaal); foreach ($fruitschaal as $fruit) { echo "<div>$fruit</div>"; } //asort doet op alfabetische volgorde //arsort doet op omgekeerd alfabetische volgorde ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse