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
460 B
34 lines
460 B
<?php
|
|
|
|
session_start();
|
|
|
|
$user_is_logged = false;
|
|
|
|
if (isset($_SESSION['login'])) {
|
|
$user_is_logged = true;
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PHP Sessions</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php
|
|
if ($user_is_logged) {
|
|
include 'content.php';
|
|
}
|
|
else {
|
|
include 'login_form.php';
|
|
}
|
|
?>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|