l206/functies.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Functies</title> </head> <body> <?php $bedrag = contributie(); echo "De functie is $bedrag euro"; function contributie(){ return 100; } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse