Делаем подарки
This commit is contained in:
parent
b9f4935841
commit
ef0c5bf966
130
presents.php
130
presents.php
@ -18,6 +18,32 @@ session_start();
|
|||||||
if ($_SESSION['uid'] != 11263) header("Location: index.php");
|
if ($_SESSION['uid'] != 11263) header("Location: index.php");
|
||||||
require_once 'functions.php';
|
require_once 'functions.php';
|
||||||
|
|
||||||
|
$dirname = "i/presents/";
|
||||||
|
$images = glob($dirname . "*.png");
|
||||||
|
|
||||||
|
if (!empty($_POST['present'])) {
|
||||||
|
if (empty($_POST['to_login'])) return 'Получатель не указан!';
|
||||||
|
if ($_POST['to_login'] == $user['login']) return 'Очень щедро - дарить что-то самому себе! ;)';
|
||||||
|
if ($_POST['flower']) {
|
||||||
|
$to = db::c()->query('SELECT `id`,`login`,`room` FROM `users` WHERE `login` = ?i', $_POST['to_login'])->fetch_assoc();
|
||||||
|
|
||||||
|
if ($_POST['from'] == 1) $from = 'Аноним';
|
||||||
|
elseif ($_POST['from'] == 2 && $user['klan']) $from = ' клана ' . $user['klan'];
|
||||||
|
else $from = $user['login'];
|
||||||
|
|
||||||
|
db::c()->query('UPDATE `inventory` SET `owner` = ?i, `present` = "?s", `letter` = "?s" WHERE `present` = "?s" AND `id` = "?s" AND `owner` = ?i AND `dressed` = 0 AND `setsale` = 0', $to['id'], $from, $_POST['podarok2'], null, $_POST['flower'], $_SESSION['uid']);
|
||||||
|
$res = db::c()->query('SELECT `id`,`name`,`duration`,`maxdur` FROM `inventory` WHERE `id` = ?i', $_POST['flower'])->fetch_assoc();
|
||||||
|
|
||||||
|
$deloText = "{$user['login']} купил подарок «%PodarokName%» за %PodarokCost% кр. и подарил его персонажу {$_POST['to_login']}";
|
||||||
|
addToDelo($deloText);
|
||||||
|
$telegraphText = "Вам пришёл подарок \"" . $res['name'] . "\" от " . $from . "!";
|
||||||
|
db::c()->query('INSERT INTO `telegraph` (receiver, text) VALUES (?i,"?s")', $to['id'], $telegraphText)->fetch_assoc();
|
||||||
|
|
||||||
|
err('Подарок удачно доставлен к ' . $_POST['to_login']);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
@ -44,98 +70,32 @@ require_once 'functions.php';
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Магазин подарков</h1>
|
<h1>Магазин подарков</h1>
|
||||||
Выберите подарок
|
|
||||||
<?php
|
|
||||||
if (!empty($_POST['present'])) {
|
|
||||||
if (empty($_POST['to_login'])) return 'Получатель не указан!';
|
|
||||||
if ($_POST['to_login'] == $user['login']) return 'Очень щедро - дарить что-то самому себе! ;)';
|
|
||||||
if ($_POST['flower']) {
|
|
||||||
$to = db::c()->query('SELECT `id`,`login`,`room` FROM `users` WHERE `login` = ?i', $_POST['to_login'])->fetch_assoc();
|
|
||||||
|
|
||||||
if ($_POST['from'] == 1) $from = 'Аноним';
|
|
||||||
elseif ($_POST['from'] == 2 && $user['klan']) $from = ' клана ' . $user['klan'];
|
|
||||||
else $from = $user['login'];
|
|
||||||
|
|
||||||
db::c()->query('UPDATE `inventory` SET `owner` = ?i, `present` = "?s", `letter` = "?s" WHERE `present` = "?s" AND `id` = "?s" AND `owner` = ?i AND `dressed` = 0 AND `setsale` = 0', $to['id'], $from, $_POST['podarok2'], null, $_POST['flower'], $_SESSION['uid']);
|
|
||||||
$res = db::c()->query('SELECT `id`,`name`,`duration`,`maxdur` FROM `inventory` WHERE `id` = ?i', $_POST['flower'])->fetch_assoc();
|
|
||||||
|
|
||||||
$deloText = "{$user['login']} купил подарок «%PodarokName%» за %PodarokCost% кр. и подарил его персонажу {$_POST['to_login']}";
|
|
||||||
addToDelo($deloText);
|
|
||||||
$telegraphText = "Вам пришёл подарок \"" . $res['name'] . "\" от " . $from . "!";
|
|
||||||
db::c()->query('INSERT INTO `telegraph` (receiver, text) VALUES (?i,"?s")', $to['id'], $telegraphText)->fetch_assoc();
|
|
||||||
|
|
||||||
err('Подарок удачно доставлен к ' . $_POST['to_login']);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<!-- Подарить подарок -->
|
|
||||||
<div>
|
<div>
|
||||||
<?php
|
Выберите подарок:<br>
|
||||||
$dirname = "i/presents/";
|
<?php foreach ($images as $image): ?>
|
||||||
$images = glob($dirname . "*.png");
|
|
||||||
|
|
||||||
foreach ($images as $image): ?>
|
|
||||||
<label class="present">
|
<label class="present">
|
||||||
<input type="radio" name="present" value="<?= $image ?>">
|
<input type="radio" name="present" value="<?= $image ?>">
|
||||||
<img src="<?= $image ?>" alt="">
|
<img src="<?= $image ?>" alt="">
|
||||||
</label>
|
</label>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</div>
|
</div>
|
||||||
<table cellspacing=0 cellpadding=0 width=100% bgcolor=#e0e0e2>
|
<div>
|
||||||
<tr>
|
<form method="post">
|
||||||
<td>
|
<input type=hidden name=present value=1>
|
||||||
<form method="post">
|
Вы можете сделать подарок любому персонажу. Ваш подарок будет
|
||||||
<input type=hidden name=present value=1>
|
отображаться в информации о персонаже.<br><br>
|
||||||
Вы можете сделать подарок любому персонажу. Ваш подарок будет
|
|
||||||
отображаться в информации о персонаже.
|
|
||||||
<p>
|
|
||||||
<input name=to_login placeholder="Имя получателя"><br>
|
|
||||||
<textarea name=podarok2 rows=6 cols=80
|
|
||||||
placeholder="Текст сопроводительной записки (в информации о персонаже не отображается)"></textarea><br>
|
|
||||||
Выберите, от чьего имени подарок:<br>
|
|
||||||
<label><input type=radio name=from value=0 checked> <?= $user['login'] ?></label><br>
|
|
||||||
<label><input type=radio name=from value=1> анонимно</label><br>
|
|
||||||
<label><input type=radio name=from value=2> от имени клана</label><br>
|
|
||||||
Долговечность подарка (5кр в день):<br>
|
|
||||||
<input name="days" placeholder="Количество дней">
|
|
||||||
<p>
|
|
||||||
<button>Подарить</button>
|
|
||||||
|
|
||||||
<input type="hidden" name="flower" id="flower" value="">
|
<input name=to_login placeholder="Имя получателя"><br>
|
||||||
<table class="zebra" width=100% cellspacing="1" cellpadding="2"
|
<textarea name=podarok2 rows=6 cols=80
|
||||||
bgcolor="#A5A5A5">
|
placeholder="Текст сопроводительной записки (в информации о персонаже не отображается)"></textarea><br>
|
||||||
<?php
|
<br>Выберите, от чьего имени подарок:<br>
|
||||||
$data = db::c()->query('SELECT `id`,`img` FROM `inventory` WHERE `owner`= ?i
|
<label><input type=radio name=from value=0 checked> <?= $user['login'] ?></label><br>
|
||||||
AND `dressed` = 0
|
<label><input type=radio name=from value=1> анонимно</label><br>
|
||||||
AND (
|
<label><input type=radio name=from value=2> от имени клана</label><br>
|
||||||
`name` LIKE "?S" OR `name` LIKE "?S" OR `name` LIKE "?S" OR `name` LIKE "?S" OR `name` LIKE "?S" OR
|
<br>Долговечность подарка (5кр в день):<br>
|
||||||
`name` LIKE "?S" OR `name` LIKE "?S" OR `name` LIKE "?S"
|
<input name="days" placeholder="Количество дней"><br>
|
||||||
)
|
<br><button>Подарить</button>
|
||||||
AND `setsale` = 0 AND `present` = "?s"
|
</form>
|
||||||
ORDER BY `id` DESC', $_SESSION['uid'], '%Букет%', '%Сувенир%', '%Подарок%', '%Валентинка%', '%Открытка%', 'Ель%', '%Медаль%', '%Статуэтка%', null);
|
</div>
|
||||||
while ($row = $data->fetch_assoc()) {
|
|
||||||
if (!in_array($row['id'], array_keys($_SESSION['flowers']))) {
|
|
||||||
$row['count'] = 1;
|
|
||||||
?>
|
|
||||||
<tr>
|
|
||||||
<td align=center style='width:150px'>
|
|
||||||
<img src="i/sh/<?= $row['img'] ?>">
|
|
||||||
<br><input type=submit
|
|
||||||
onClick="document.all['flower'].value="<?= $row['id']; ?>
|
|
||||||
value="Подарить">
|
|
||||||
</td>
|
|
||||||
<td valign=top>
|
|
||||||
<?php showitem($row); ?>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</form>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user