l105/11.5/pag3.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 $voornaam = $_GET['voornaam']; $achternaam = $_GET['achternaam']; $woonplaats = $_GET['woonplaats']; $leeftijd = $_GET['leeftijd']; echo "Jouw naam is $voornaam $achternaam, je woont in $woonplaats en je bent $leeftijd jaar oud."; ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse