20 lines
519 B
PHP
20 lines
519 B
PHP
<!doctype html>
|
|
<html lang="pl">
|
|
<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>Wynik</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<?php
|
|
$imie = $_POST['imie'];
|
|
echo "<h1>Witaj $imie !</h1>";
|
|
echo "<h2>Miło cię widzieć na naszej stronie!</h2>";
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|