This commit is contained in:
2p01
2025-04-09 11:19:34 +02:00
parent 9ed5b9ce1d
commit 305379e78d
3 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<!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>