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.

24 lines
443 B

<?php
session_start();
echo "probiha prihlasovani...";
echo "<br>";
echo $_POST["login"];
echo "<br>";
echo $_POST["password"];
if ($_POST["login"] == "admin" &&
$_POST["password"] == "heslo")
{
echo "prihlaseni probehlo uspesne";
$_SESSION["login"] = $_POST["login"];
header("Location: /index.php");
}
else {
echo "prihlaseni neprobehlo";
$_SESSION["login"] = "";
header("Location: /index.php?error=1");
}