H10.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>arrays</title>
</head>
<body>
<?php
$getallen =[12, 167,47,95,101];
foreach($getallen as $pipo){
echo "<div>$pipo<div>";
}
$Hoofdsteden=[];
$Hoofdsteden ['Nederland'] = 'Amsterdam'
$Hoofdsteden ['Duitsland'] = 'Berlijn'
$Hoofdsteden ['Spanje'] = 'Madrid'
foreach($Hoofdsteden as $land => $hoofdstad){
echo "<div> DE hoodstad van $land is $hoofdstad.<div>";
}
?>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse