-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgra.php
38 lines (28 loc) · 911 Bytes
/
gra.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
session_start();
if (!isset($_SESSION['zalogowany']))
{
header('Location: index.php');
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css?v=<?php echo time(); ?>">
<title>Osadnicy Gra</title>
</head>
<body>
<?php
echo "<p>Hello ".$_SESSION['user'].'! [<a href="logout.php">Log out!</a>]</p>';
echo "<p><b>Wood</b>: ".$_SESSION['drewno'];
echo " | <b>Rock</b>: ".$_SESSION['kamien'];
echo " | <b>Corn</b>: ".$_SESSION['zboze'];
echo "<p><b>E-mail</b>: ".$_SESSION['email'];
echo "<br><b>premium expired after</b>: ".$_SESSION['dnipremium']. "<b> days<b>"."</p>";
?>
</body>
</html>