x105/F1.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
if($_POST['submit']){
$voornaam = $_POST['voornaam'];
$achternaam = $_POST['achternaam'];
echo "$voornaam $achternaam";
}
?>
<form action="" method= 'post'>
<div>Voornaam</div>
<input type="text" name= 'voornaam'>
<div>Achternaam</div>
<input type="text" name='achternaam'>
<div></div>
<input type="submit" name ='submit' value= 'doorgaan'>
</form>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse