l106/H11/11.5/11.5.1.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?php $naam = $_GET['naam']; $achternaam = $_GET['achternaam']; echo "je naam is $naam $achternaam." ?> <form method = "post" action="11.5.2.php"> <input type="hidden" name = 'naam' value = <?php echo $naam?>> <input type="hidden" name = 'achternaam' value = <?php echo $achternaam?>> <input type="text" name = "titel" value = "titels"> <input type="submit" value = "posten"> </form> </body> </html>

Resultaat

Made by Thijs Aarnoudse