You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
629 B
27 lines
629 B
<?php
|
|
$name = $_POST["name"];
|
|
$mail = $_POST["mail"];
|
|
$comment = $_POST["comment"];
|
|
$color = $_POST["color"];
|
|
|
|
if($_POST["pw"] != "asd"){
|
|
header("Location: /");
|
|
}
|
|
|
|
?>
|
|
|
|
<!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>
|
|
<h1>Ahoj, <?php echo $name ?> </h1>
|
|
<h3>použitý email je <?php echo $mail ?> </h3>
|
|
<h3>Oblíbena barva: <?php echo $color ?> </h3>
|
|
<p><b>Komentář:</b> <?php echo $comment ?> </p>
|
|
</body>
|
|
</html>
|