x109/F2.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
$v = $_POST['voornaam'];
$a = $_POST['achternaam'];
function form(){
echo"<form methode='get' action='' /form>";
echo"<form type='text' name='voornaam' /form>";
echo"<form type='text' name='achternaam' /form>";
echo"<form type='post' name='verzend' /form>";
}
if ($v && $a){
echo"Je voornaam is $v en je achternaam is $a.";
}
elseif($v || $a){
echo"Je hebt niet beide vakken ingevuld.";
}
else (){
form('','');
}
?>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse