<?php
session_start();
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="Verzenden.php" method="post">
Naam: <input type="text" name="naam" value="naam">
E-mail: <input name="email" type="text" value="email"><br>
Adres <input name="Adres" type="text" value="adres"><br>
Postcode <input name="postcode" type="text" value="post"><br>
<input type="submit" name="Verzenden" value="Verzenden"
<?php
if (isset($_post['Verzenden'])) {
$_SESSION["naam"] = $_post['naam'];
$_SESSION["email"] = $_post["email"];
$_SESSION["adres"] = $_post["adres"];
$_SESSION["postcode"] = $_post["post"];
header('http://horecacelebration.nl/verzenden-php/?preview=true');
exit();
}
?>
<input type="text"
</form>
</body>
</html>