NodeJS repozitar pro 4.J pro rok 2025/2026
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.
 
 
 
 
 

34 lines
947 B

<?php
session_start();
//načteme chybu POKUD EXISTUJE
$chyba = $_SESSION["chyba"] ?? "";
$mesto = $_SESSION["mesto"] ?? "";
//Vyčistíme globální $_SESSION proměnné
unset($_SESSION["chyba"]);
unset($_SESSION["mesto"]);
?>
<!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>
<h1>OpenWeatherMap</h1>
<form action="actions.php" method="POST">
<input
type="text"
name="mesto"
placeholder="Zadej město (např. Štětí,Praha)"
value="<?= htmlspecialchars($mesto)?>"
autofocus
>
<button type="submit">Hledat počasí pro město</button>
</form>
<!--Zobrazení chyby pokud nějaká exisstuje -->
<?php if ($chyba): ?>
<div><?= htmlspecialchars($chyba) ?></div>
<?php endif; ?>
</body>
</html>