x107/G1.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 $voornnaam = $_GET["voornaam"]; $achternaam = $_GET["achternaam"]; $adres = $_GET["adres"]; $postcode = $_GET["postcode"]; $woonplaats = $_GET["woonplaats"]; ?> <form action="" method="get"> <input name="voornaam"type="text" value=""> <input name="achternaam"type="text" value=""> <input name="adres"type="hidden" value=""> <input name="postcode"type="hidden" value=""> <input name="woonplaats"type="hidden" value=""> <input name="enter"type="submit"> </form> </body> </html>

Resultaat

Made by Thijs Aarnoudse