本文整理汇总了PHP中history函数的典型用法代码示例。如果您正苦于以下问题:PHP history函数的具体用法?PHP history怎么用?PHP history使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了history函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: login
/**
* 登录指定用户
* @param integer $uid 用户ID
* @return boolean ture-登录成功,false-登录失败
*/
public function login($uid)
{
/* 检测是否在当前应用注册 */
$user = $this->field(true)->find($uid);
if (!$user) {
//未注册
/* 在当前应用中注册用户 */
$Api = new UserApi();
$info = $Api->info($uid);
$user = $this->create(array("nickname" => $info[1], "status" => 1));
$user["uid"] = $uid;
if (!$this->add($user)) {
$this->error = "前台用户信息注册失败,请重试!";
return false;
}
} elseif (1 != $user["status"]) {
$this->error = "用户未激活或已禁用!";
//应用级别禁用
return false;
}
/* 登录用户 */
$this->autoLogin($user);
/* 登录历史 */
history($uid);
/* 登录购物车处理函数 */
addintocart($uid);
//记录行为
action_log("user_login", "member", $uid, $uid);
return true;
}
示例2: pay_for_3
function pay_for_3($summ)
{
// оплата если 3 из 5 угадано
global $user;
mysql_query("update users set money = money + '" . $summ . "' where id = " . $user['id'] . ";");
history($user['login'], 'Билет выиграл (3 из 5 угадано)', $summ . " Зл.", $user['remote_ip'], 'Лотерея Хаоса');
}
示例3: mysql_query
if ($take == 36) {
if ($db['kwest'] != 35) {
$msg = "Ошибка, не пытайтесь взломать игру :)!";
} else {
$my_prof_sql = mysql_query("SELECT * FROM person_proff WHERE person=" . $db["id"] . " and proff=5");
$my_prof = mysql_fetch_array($my_prof_sql);
if ($my_prof["navika"] >= 150) {
$ItTake = "Щит Забытого Бога";
$buyitem = mysql_fetch_array(mysql_query("SELECT * FROM paltar WHERE name='" . $ItTake . "'"));
if ($buyitem) {
mysql_query("INSERT INTO inv(owner,object_id,object_type,object_razdel,wear,iznos,iznos_max,noremont) VALUES ('" . $login . "','" . $buyitem['id'] . "','" . $buyitem['object'] . "','obj','0','0','10','1')");
}
mysql_query("UPDATE users SET kwest=36, naqrada=naqrada+300, exp=exp+3500 WHERE login='" . $login . "'");
$msg = "Вы получили <u>\"{$ItTake}\"</u>, 3500 опыта и 300 ед. награды<br>";
mysql_query("INSERT INTO inv(owner,object_id,object_type,object_razdel,gift,wear,gift_author) VALUES('" . $login . "','8','medal','medal','1','0','WWW.MEYDAN.AZ')");
history($login, "Подземелья Призраков", $msg, $ip, $login);
} else {
$msg = "Задания еще не выполнена!<br> <font color=#000000>Не хватает: " . (int) (150 - $my_prof["navika"]) . "</font>";
}
}
}
echo "<center><b style='color:#ff0000'> {$msg}</b></center>";
echo "<fieldset style='WIDTH: 100%; border:1px ridge;'>";
echo "<legend><b>Получить задание</b> - <font color=#000000>Награды: <b>{$db['naqrada']} ед.</b></font></legend>\n<table width=100% cellspacing=0 cellpadding=5>\n<tr>\n<td><div align='justify'>";
$db = mysql_fetch_array(mysql_query("SELECT * FROM users WHERE login='{$login}' limit 1"));
if ($db['kwest'] == 0) {
echo "<center>Здравствуйте, <b>{$login}</b>.</center> Я так понимаю, что в <b>" . strtoupper($db["city_game"]) . " ' е</b> вы недавно, так как раньше я вас не видел. \n\t\tНадеюсь, вам понравился наш великий город и вы останетесь здесь надолго. \n\t\t<br>Город у нас большой: есть арена для тренировок, магазин, в котором можно приобрести боевую амуницию, оружие, разнообразные свитки и эликсиры.\n\t\tКстати, о магазине... Вам необходимо купить доспехи. Если вы их еще не купили, без них находится в нашем городе крайне опасно! Кстати, захватите в Магазине Магии свитки!\n\t\t<center><b>Так что направляйтесь в магазин!</b> </center>";
echo "<center><input class=lbut type=button value='Получить Квест №1!' onclick='window.location.href=\"?take=1\"'></center>";
} elseif ($db['kwest'] == 1) {
echo "<center><b style='color:#ff0000'>Вы получили <u>Квест №1</u></b>.</center>Для его выполнения вам предстоит добраться, через кровожадных монстров в подземелье, \n\t\tдо <b>Оранжерея</b> и найти там <b>Александрит</b>.\n\t\t<br>После этого придите сюда для получения бонуса.";
echo "<br><center><input class=lbut type=button value='Получить бонус за Квест №1' onclick='window.location.href=\"?take=2\"'></center>";
示例4: Code
<label for="exp-month">Expiration Date:</label>
<input id="exp-month" class="field-input" placeholder="Month" name="exp-month" required />
<input id="exp-year" class="field-input" placeholder="Year" name="exp-year" required />
</div>
<div class="field">
<label for="val-code">Validation Code (?):</label>
<input id="val-code" class="field-input" name="val-code"/>
</div>
<div class="field dark-bottom">
<label for="zip-code">Zip/Postal Code:</label>
<input id="zip-code" class="field-input" name="zip" required />
</div>
<input type="submit" id="create-payment-btn" name="Create Payment Method" value="Create Payment Method">
<h4 class="terms-text">By Clicking Confirm, you agree to FireFall's Terms & Conditions</h4>
</div>
</form>
</div>
</div>
<div id="history-page">
<?php
history();
?>
</div>
<div id="formResponse">Credit card added successfully</div>
</div>
<!-- JavaScript at the bottom for fast page loading -->
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
示例5: htmlspecialchars
<?php
$site_n = htmlspecialchars(addslashes($_POST['site_n']));
$history_n = htmlspecialchars(addslashes($_POST['history_n']));
if (empty($site_n)) {
?>
<table border=0 class=inv width=500 height=120>
<tr valign=top><td align=left>
<form name='chin' action='main.php?act=clan&do=2&a=opt' method='post'>
<b>Сайт:</b> <input type=text name='site_n' value='<?php
echo $clan_site;
?>
' class=new size=30><BR><BR>
<b>Легенда клана:</b><BR>
<textarea cols=80 rows=15 class=new name='history_n'><?php
echo $history;
?>
</textarea><BR>
<input type=submit value=" Сохранить " class=new>
</form>
</td></tr>
</table>
<?php
} else {
if ($db["glava"] == 1) {
$history = str_replace("\n", "<BR>", $history_n);
$result = mysql_query("UPDATE clan SET site='" . $site_n . "',story='" . $history . "' WHERE name_short='" . $clan_s . "'");
history($login, 'Настройки клана', 'Ханства ' . $clan_t, $db['remote_ip'], "Глава: " . $login);
echo "Настройки клана изменены удачно.";
}
}
示例6: htmlspecialchars
<?php
include "key.php";
$login = $_SESSION['login'];
$target = htmlspecialchars(addslashes($_POST['target']));
$new_pass = htmlspecialchars(addslashes($_POST['new_pass']));
if (!empty($target)) {
$S = "select * from users where login='" . $target . "'";
$q = mysql_query($S);
$res = mysql_fetch_array($q);
if (!$res) {
print "ѕерсонаж <B>" . $target . "</B> не найден в базе данных.";
die;
}
if ($res['login'] == "—ќ«ƒј“≈Ћ№") {
print "–едактирование богов запрещено высшей силой!";
die;
}
if ($db["adminsite"] != 5) {
if ($res['adminsite'] >= 5 || $res["admin_level"] >= 9) {
print "ѕерсонаж <B>" . $target . "</B> не найден в базе данных.";
die;
}
}
$sql = "UPDATE users SET password='" . base64_encode($new_pass) . "' WHERE login='" . $target . "'";
$result = mysql_query($sql);
history($target, "—менили пароль", $reson, $ip, $login);
history($login, "—менил пароль", $reson, $ip, $target);
print "ѕерсонаж <B>" . $target . "</B> успешно обновлен.";
}
示例7: mysql_query
case 9:
$magic_id = 218;
break;
case 10:
$magic_id = 132;
break;
}
}
}
}
}
}
if ($magic_id) {
mysql_query("INSERT INTO inv(owner,object_id,object_type,object_razdel,wear,iznos,iznos_max) VALUES ('" . $login . "','" . $magic_id . "','scroll','magic','0','0','1')");
mysql_query("UPDATE inv SET is_modified=0 WHERE id={$item_id}");
history($login, 'Сняли Заточку', $object["object_type"] . "-" . $object["is_modified"] . "[" . $magic_id . "]", $ip, 'Ремонтная мастерская');
$mess = "Удачно";
}
} else {
$mess = "Это оружие не было заточено!";
}
} else {
$mess = "Предмет не найден в рюкзаке...";
}
}
//----------------------------------------------------------------------------------------------
$platina = sprintf("%01.2f", $db["platina"]);
$money = sprintf("%01.2f", $db["money"]);
$naqrada = sprintf("%01.2f", $db["naqrada"]);
?>
<SCRIPT LANGUAGE="JavaScript" SRC="scripts/magic-main.js"></SCRIPT>
示例8: date
if (trim($new_mail) == '') {
$ok = false;
$mess = 'Задан пустой почтовый адрес.';
}
if (!preg_match('#^[a-z0-9.!\\#$%&\'*+-/=?^_`{|}~]+@([0-9.]+|([^\\s]+\\.+[a-z]{2,6}))$#si', $new_mail)) {
$ok = false;
$mess = "Ошибка. Неверно введен почтовый адрес.";
}
if ($old_mail != $db["email"]) {
$ok = false;
$mess = "Ошибка. Старый почтовый адрес указан неверно.";
}
if ($ok) {
$date = date("d.m.Y H:i");
mysql_query("UPDATE info SET email='" . $new_mail . "' WHERE id_pers='" . $db["id"] . "'");
history($login, "Был сменен E-mail", $date, $ip, "Анкета");
$mail = $db["email"];
$subject = "Смена e-mail у персонажа {$login}";
$message = "<b>Здраствуйте, {$login}!</b><br/><br/>";
$message .= "Кто-то с ip-адреса <b>{$ip}</b> {$date} был сменен e-mail, указанный при регистрации персонажа <b>{$login}</b> он-лайн игры <b>WWW.MEYDAN.AZ</b>.<br/>";
$message .= "<br><b>Новый e-mail</b>: {$new_mail}<br/><br/><br/><br/>";
$message .= "<b style='color:green'>С уважением. администрация WWW.MEYDAN.AZ.</b>";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=windows-1251' . "\r\n";
$headers .= 'From: WWW.MEYDAN.AZ <admin@meydan.az>' . "\r\n";
if (mail($db["email"], $subject, $message, $headers)) {
$mess .= "<b style='color:#ff0000'>Внимание! Письмо с паролем будет отправлено на почту указанный в анкете в течении 5 минут.</b><br/>";
} else {
$mess .= "<b style='color:#ff0000'>Внимание! Не удалось отправить пароль на e-mail, указанный в анкете!</b><br/>";
}
$mess .= 'Почтовый адрес успешно сменен.';
示例9: history
$db["platina"] = $db["platina"] - $price;
$msg = "Вы удачно купили " . ($item_count ? $counts . ' шт ' : '') . " <b>«" . $name . "»</b> за <b>" . $price . " Пл.</b>";
history($login, 'Купил ' . ($item_count ? $counts . ' шт ' : ''), $msg, $ip, 'Магазин магии');
}
} else {
if ($r["type"] == "ability") {
if ($db["clan"] && $db["glava"]) {
if ($db["platina"] >= $price_gos) {
$have = mysql_num_rows(mysql_query("SELECT * FROM abils WHERE tribe='" . $db["clan"] . "' and item_id='" . $item . "'"));
if (!$have) {
mysql_query("INSERT INTO abils (item_id,tribe, m_iznos) values ('" . $r["id"] . "','" . $db["clan"] . "','" . $r["iznos_max"] . "')");
mysql_query("UPDATE users SET platina=platina-{$price_gos} WHERE login='" . $login . "'");
mysql_query("UPDATE scroll SET {$city}={$city}-1 WHERE id='" . $item . "'");
$db["platina"] = $db["platina"] - $price_gos;
$msg = "Вы удачно купили <b>«{$name}»</b> за <b>" . $price . " Пл.</b>";
history($login, "Купил ", $msg, $ip, 'Магазин магии');
} else {
$msg = "Вы уже купили {$name}";
}
} else {
$msg = "У вас нет такой суммы!";
}
} else {
$msg = "Вы не состоите ни в каком клане!";
}
}
}
$otdel = $buy;
}
}
$money = sprintf("%01.2f", $db["money"]);
示例10: mysql_query
$kupon_type = 0;
$str_his = "100AZN";
break;
case 1:
$max_win = 1000;
$object_id = 427;
$kupon_type = 1;
$str_his = "10AZN";
break;
}
$str = "Выигрышный Купон: Вы являетесь Участником Новогоднего Джекпота. Максимальный Выигрыш " . $max_win . " Пл. У Вас " . $kupon_count . " купона...";
for ($i = 1; $i <= $kupon_count; $i++) {
mysql_query("INSERT INTO inv (owner, object_id, object_type, object_razdel, msg, gift, gift_author, term) VALUES ('" . $res['login'] . "', '" . $object_id . "', 'flower', 'other', 'Вы являетесь Участником Джекпота', 1, 'WWW.Oldmeydan.Pe.Hu', '" . (time() + 3600 * 24 * 30) . "')");
mysql_Query("INSERT INTO bank_member (user_id, type) VALUES ('" . $res["id"] . "', '" . $kupon_type . "');");
}
history($res["login"], 'Купон -$str_his', $str, $res["remote_ip"], 'Купон-$str_his');
mysql_query("INSERT INTO pochta(user, whom, text, subject) VALUES ('Путешественник','" . $res["login"] . "','" . $str . "','Выигрышный Купон')");
say($res["login"], $str, $res["login"]);
say("toall_news", "Воин <b>" . $res["login"] . "</b> получил {$kupon_count} выигрышных купонов!", $res["login"]);
echo "ok";
} else {
echo "User Not Found";
}
} else {
?>
<br>
<br>
<form name='action' action='main.php?act=inkviz&spell=kupon' method='post'>
<table border=0 width=500>
<tr><td>Логин:</td><td><input type=text name="target" class=new size=30></td></tr>
<tr><td>Количество купонов:</td><td><input type=text name="kupon_count" class=new size=30></td></tr>
示例11: history
<li><a class='logout' href='includes/logout.php'>Log ud</a></li>
</ul>
</div>
</div>
<div id="main">
<div class="header">
<h1>Min historik</h1>
<h2>Viser din historik for deltagelse i projekter</h2>
</div>
<div class="content">
<h2 class="content-subhead"></h2>
<p> <?php
history($mysqli);
?>
</p>
</div>
</div>
</div>
<script src="js/ui.js"></script>
<?php
} else {
?>
<p>
<span class="error">Du har ikke rettigheder til at komme ind på siden.</span> Gå venligst tilbage til <a href="index.php">login siden</a>.
</p>
<?php
}
示例12: foreach
$a[] = 1;
}
}
if (!in_Array(0, $a)) {
foreach ($item_array[$item_id] as $currentValue) {
mysql_query("DELETE FROM inv WHERE inv.object_type='wood' and inv.owner='" . $login . "' and inv.object_id=" . $currentValue["item"] . " LIMIT " . $currentValue["count"]);
}
$buy_item = mysql_fetch_array(mysql_query("SELECT * FROM paltar WHERE id='" . $item_id . "'"));
if ($buy_item["object"] == "spear") {
$del_time = time() + 30 * 24 * 3600;
}
mysql_query("LOCK TABLES inv WRITE");
mysql_query("INSERT INTO `inv` (`id`, `owner`, `img`, `object_id`, `object_type`, `object_razdel`, `term`, `name`, `mass`, `price`, `gos_price`, `min_sila`, `min_lovkost`, `min_udacha`, `min_power`, `min_intellekt`, `min_vospriyatie`, `min_level`, `min_sword_vl`, `min_staff_vl`, `min_axe_vl`, `min_fail_vl`, `min_knife_vl`, `min_spear_vl`,`min_fire`,`min_water`,`min_air`,`min_earth`,`min_svet`,`min_tma`,`min_gray`,`add_fire`, `add_water`, `add_air`, `add_earth`, `add_svet`, `add_tma`, `add_gray`, `add_sila`, `add_lovkost`, `add_udacha`, `add_intellekt`, `add_duxovnost`, `add_hp`, `add_mana`, `protect_head`, `protect_arm`, `protect_corp`, `protect_poyas`, `protect_legs`, `protect_rej`, `protect_drob`, `protect_kol`, `protect_rub`, `protect_fire`, `protect_water`, `protect_air`, `protect_earth`, `protect_svet`, `protect_tma`, `protect_gray`,`protect_mag`,`protect_udar`, `shieldblock`, `krit`, `akrit`, `uvorot`, `auvorot`, `parry`, `counter`, `add_rej`, `add_drob`, `add_kol`, `add_rub`, `ms_udar`, `ms_krit`, `ms_mag`, `ms_fire`, `ms_water`, `ms_air`, `ms_earth`, `ms_svet`, `ms_tma`, `ms_gray`, `ms_rej`, `ms_drob`, `ms_kol`, `ms_rub`, `iznos_max`, `min_attack`, `max_attack`, `proboy`, `add_oruj`, `add_sword_vl`, `add_staff_vl`, `add_axe_vl`, `add_fail_vl`, `add_knife_vl`, `add_spear_vl`, `need_orden`, `sex`, `art`, `podzemka`, `is_personal`, `personal_owner`, `noremont`, `two_hand`, `second_hand`, `add_fire_att`, `add_air_att`, `add_watet_att`, `add_earth_att`, `edited`) \n\t\t\t\tVALUES (NULL, '" . $login . "','" . $buy_item["img"] . "' ,'" . $buy_item["id"] . "', '" . $buy_item["object"] . "', 'obj', '" . $del_time . "', '" . $buy_item["name"] . "', '" . $buy_item["mass"] . "', '" . $buy_item["price"] . "', '" . $buy_item["price"] . "', '" . $buy_item["min_sila"] . "', '" . $buy_item["min_lovkost"] . "', '" . $buy_item["min_udacha"] . "', '" . $buy_item["min_power"] . "', '" . $buy_item["min_intellekt"] . "', '" . $buy_item["min_vospriyatie"] . "', '" . $buy_item["min_level"] . "', '" . $buy_item["min_sword_vl"] . "', '" . $buy_item["min_staff_vl"] . "', '" . $buy_item["min_axe_vl"] . "', '" . $buy_item["min_fail_vl"] . "', '" . $buy_item["min_knife_vl"] . "', '" . $buy_item["min_spear_vl"] . "', '" . $buy_item["min_fire"] . "','" . $buy_item["min_water"] . "','" . $buy_item["min_air"] . "','" . $buy_item["min_earth"] . "','" . $buy_item["min_svet"] . "','" . $buy_item["min_tma"] . "','" . $buy_item["min_gray"] . "', '" . $buy_item["add_fire"] . "', '" . $buy_item["add_water"] . "', '" . $buy_item["add_air"] . "', '" . $buy_item["add_earth"] . "', '" . $buy_item["add_svet"] . "', '" . $buy_item["add_tma"] . "', '" . $buy_item["add_gray"] . "', '" . $buy_item["add_sila"] . "', '" . $buy_item["add_lovkost"] . "', '" . $buy_item["add_udacha"] . "', '" . $buy_item["add_intellekt"] . "', '" . $buy_item["add_duxovnost"] . "', '" . $buy_item["add_hp"] . "', '" . $buy_item["add_mana"] . "', '" . $buy_item["protect_head"] . "', '" . $buy_item["protect_arm"] . "', '" . $buy_item["protect_corp"] . "', '" . $buy_item["protect_poyas"] . "', '" . $buy_item["protect_legs"] . "', '" . $buy_item["protect_rej"] . "', '" . $buy_item["protect_drob"] . "', '" . $buy_item["protect_kol"] . "', '" . $buy_item["protect_rub"] . "', '" . $buy_item["protect_fire"] . "', '" . $buy_item["protect_water"] . "', '" . $buy_item["protect_air"] . "', '" . $buy_item["protect_earth"] . "', '" . $buy_item["protect_svet"] . "', '" . $buy_item["protect_tma"] . "', '" . $buy_item["protect_gray"] . "', '" . $buy_item["protect_mag"] . "', '" . $buy_item["protect_udar"] . "','" . $buy_item["shieldblock"] . "','" . $buy_item["krit"] . "', '" . $buy_item["akrit"] . "', '" . $buy_item["uvorot"] . "', '" . $buy_item["auvorot"] . "', '" . $buy_item["parry"] . "', '" . $buy_item["counter"] . "', '" . $buy_item["add_rej"] . "', '" . $buy_item["add_drob"] . "', '" . $buy_item["add_kol"] . "', '" . $buy_item["add_rub"] . "', '" . $buy_item["ms_udar"] . "', '" . $buy_item["ms_krit"] . "', '" . $buy_item["ms_mag"] . "', '" . $buy_item["ms_fire"] . "', '" . $buy_item["ms_water"] . "', '" . $buy_item["ms_air"] . "', '" . $buy_item["ms_earth"] . "', '" . $buy_item["ms_svet"] . "', '" . $buy_item["ms_tma"] . "', '" . $buy_item["ms_gray"] . "', '" . $buy_item["ms_rej"] . "', '" . $buy_item["ms_drob"] . "', '" . $buy_item["ms_kol"] . "', '" . $buy_item["ms_rub"] . "', '" . $buy_item["iznos_max"] . "', '" . $buy_item["min_attack"] . "', '" . $buy_item["max_attack"] . "', '" . $buy_item["proboy"] . "','" . $buy_item["add_oruj"] . "' ,'" . $buy_item["add_sword_vl"] . "', '" . $buy_item["add_staff_vl"] . "', '" . $buy_item["add_axe_vl"] . "', '" . $buy_item["add_fail_vl"] . "', '" . $buy_item["add_knife_vl"] . "', '" . $buy_item["add_spear_vl"] . "', '" . $buy_item["need_orden"] . "', '" . $buy_item["sex"] . "', '" . $buy_item["art"] . "', '1', '" . $buy_item["is_personal"] . "', '" . $buy_item["personal_owner"] . "', '" . $buy_item["noremont"] . "', '" . $buy_item["two_hand"] . "', '" . $buy_item["second_hand"] . "', '" . $buy_item["add_fire_att"] . "', '" . $buy_item["add_air_att"] . "', '" . $buy_item["add_watet_att"] . "', '" . $buy_item["add_earth_att"] . "', '" . $buy_item["edited"] . "');");
mysql_query("UNLOCK TABLES");
$msg = "Вы удачно купили <b>«" . $buy_item["name"] . "»</b>";
history($login, 'Купил', $buy_item["name"], $db["remote_ip"], 'Ледяной магазин');
}
}
}
//************************************************************
echo "<h3>Магазин НОВРУЗ-БАЙРАМ </h3>";
$money = sprintf("%01.2f", $db["money"]);
$platina = sprintf("%01.2f", $db["platina"]);
$doblest = sprintf("%01.2f", $db["doblest"]);
echo "\n<table width=100% cellspacing=0 cellpadding=0 border=0>\n<tr>\n<td align=left>У вас в наличии: <b>" . $money . "</b> Зл. <b>" . $platina . "</b> Пл. <b>" . $doblest . "</b> Доблесть </td>\n<td align=center nowrap><font color=red>" . $msg . "</font></td>\n<td align=right nowrap>\n\t<INPUT TYPE=button value=\"Обновить\" onClick=\"location.href='main.php?act=none'\">\n \t<INPUT TYPE=button value=\"Вернуться\" onClick=\"location.href='main.php?act=go&level=novruz_go';\">\n</td>\n</tr>\n</table><hr>\n\n<table border=0 width=100%>\n<tr><td colspan=2>" . ($err_msg ? "<font color=#ff0000>Не хватает: " . $err_msg . "</font>" : "") . "</td></tr>\n<tr>\n <td valign=top nowrap>";
include "player.php";
echo "\n </td>\n <td valign=top width=100%>";
if (!$_GET['otdel']) {
$_GET['otdel'] = 'obj';
}
$db["vip"] = 0;
示例13: floor
$hours = floor(SILENT / 60);
$minutes = SILENT - $hours * 60;
if ($hours > 0) {
if ($hours == 2 || $hours == 24) {
$hours_d = "{$hours} часа";
} else {
$hours_d = "{$hours} часов";
}
$minutes_d = "";
} else {
$hours_d = "";
$minutes_d = "{$minutes} минут";
}
$pref = $db["sex"];
if ($pref == "female") {
$prefix = "а";
} else {
$prefix = "";
}
if ($reason != "") {
$reason_text = "<b>Причина:</b> <i>" . $reason . "</i>";
} else {
$reason_text = "";
}
say("toall", "<font color=#40404A>Смерть Души <b>"" . $login . ""</b> использовал{$prefix} заклятие молчания на персонажа <b>"" . $res['login'] . ""</b> на {$hours_d} {$minutes_d}. {$reason_text}</font>", $login);
history($target, "Молчанка на 15 мин.", $reason_text, $ip, $login);
history($login, "Молчанка на 15 мин.", $reason_text, $ip, $target);
$time_d = $hours_d . " " . $minutes_d;
echo "Кляп засунут в рот <b>" . $target . "</b>. Он будет молчать " . $time_d;
}
}
示例14: switch
$action = $_REQUEST['action'];
switch ($action) {
case 'players':
echo json_encode(players());
break;
case 'update':
echo json_encode(updateStats(time(), $_REQUEST['team1'], $_REQUEST['team2'], $_REQUEST['scores']));
break;
case 'reset':
resetStats();
break;
case 'ranking':
echo json_encode(ranking());
break;
case 'history':
echo json_encode(history());
break;
case 'log':
echo json_encode(gameLog());
break;
case 'match':
if (isset($_REQUEST['team2'])) {
echo json_encode(match($_REQUEST['team1'], $_REQUEST['team2']));
} else {
echo json_encode(bestMatch($_REQUEST['team1']));
}
break;
case 'profile':
echo json_encode(profile($_REQUEST['id']));
break;
}
示例15: htmlspecialchars
$target = htmlspecialchars(addslashes($_POST['target']));
$login = $_SESSION['login'];
$noname = $_POST['noname'];
if (!empty($target)) {
$QUERY = mysql_query("SELECT * FROM users WHERE login='" . $target . "'");
$data = mysql_fetch_array($QUERY);
if ($data["travm"] != '0') {
$t_stat = $data["travm_stat"];
$o_stat = $data["travm_old_stat"];
$SQ = mysql_query("UPDATE users SET {$t_stat}={$t_stat}+{$o_stat},travm='0', travm_stat='', travm_var='', travm_old_stat='' WHERE login='" . $target . "'");
$pref = $db["sex"];
if ($pref == "female") {
$prefix = "а";
} else {
$prefix = "";
}
if ($noname == "") {
$noname_cl = $login;
} else {
if ($noname == 1) {
$noname_cl = "Высшая сила";
}
}
say("toall", "Представитель порядка <b>«" . $noname_cl . "»</b> вылечил{$prefix} персонажа <b>«" . $target . "»</b>", $login);
echo "Персонаж <b>" . $target . "</b> теперь здоров.";
history($target, "Вылечили", $reson, $data["remote_ip"], $noname_cl);
history($login, "Вылечил", $reson, $db["remote_ip"], $target);
} else {
echo "Персонаж <b>" . $target . "</b> не травмирован.";
}
}