battles/fontan_luck.php
2019-01-16 01:10:33 +02:00

38 lines
1.6 KiB
PHP

<?php
session_start();
if (is_null($_SESSION['uid'])) header("Location: index.php");
require_once 'functions.php';
$get = urldecode(filter_input(INPUT_SERVER, 'QUERY_STRING'));
if ($get == 'exit') {
db::c()->query('UPDATE `users`,`online` SET `users`.`room` = 2702, `online`.`room` = 2702 WHERE `users`.`id` = ?i AND `online`.`id` = ?i', $user['id'], $user['id']);
header('Location: city.php');
}
?>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css"/>
</head>
<body>
<div style="float: right;">
<button onclick="location.href='main.php'">Обновить</button>
<button onclick="location.href='?exit'">Вернуться</button>
</div>
<h2>Фонтан созерцания того, как же прекрасен этот фонтан</h2>
<div>
<?= nick::id($user['id'])->full() ?>
<br>Выпив живительной воды из фонтана можно восстановить свои силы.
<br><small style="color: darkgreen;">
Чёрт бы побрал эти исходники из которых код клочьями вырезан жадными до наживы людьми.
Хрен пойми как тут всё задумывалось. Наслаждайтесь картинкой фонтана. ;)</small>
</div>
<div>
<button disabled>Испить водички</button>
<button disabled>Бросить монетку</button>
<button disabled>Загадать желание</button>
</div>
<div style="text-align: center;"><img src="i/fountain.png"></div>
</body>
</html>