x112/G1.php
<?php
$voornaam = $_GET['voornaam'];
$achternaam = $_GET['achternaam'];
$submit = $_GET['submit'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>G1</title>
</head>
<body>
<?php
if($submit != TRUE) {
echo '<form action="" method="GET">';
echo 'Voornaam: <input type="text" name="voornaam">';
echo '<br>';
echo 'Achternaam: <input type="text" name="achternaam">';
echo '<br>';
echo 'Submit <input type="submit" value="" name"submit">';
echo '</form>';
}
if ($submit == TRUE) {
echo "Je hebt geklikt";
}
echo $voornaam . " " . $achternaam;
?>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse