Убрал дубликаты файлов.
This commit is contained in:
parent
bbe631b69f
commit
c5a7dc4b58
54
cave.php
54
cave.php
@ -1,16 +1,21 @@
|
|||||||
<?php
|
<?php
|
||||||
session_start();
|
session_start();
|
||||||
error_reporting(1);
|
if (empty($_SESSION['uid'])) {
|
||||||
ini_set('display_errors', 'on');
|
|
||||||
|
|
||||||
include("config.php");
|
|
||||||
if (!isset($_SESSION['uid'])) {
|
|
||||||
header('Location: index.php');
|
header('Location: index.php');
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
$user = mysql_fetch_array(mysql_query('SELECT * FROM `users` WHERE `id` = "' . $_SESSION['uid'] . '" LIMIT 1'));
|
require_once 'functions.php';
|
||||||
include("functions.php");
|
//require_once 'cave/cave_bots.php';
|
||||||
include('cave/cave_bots.php');
|
|
||||||
|
class Cave
|
||||||
|
{
|
||||||
|
use CaveBots, CaveItems;
|
||||||
|
public static function cancarry($m, $user)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function cancarry($m, $u)
|
function cancarry($m, $u)
|
||||||
{
|
{
|
||||||
@ -149,8 +154,6 @@ function battlewithbot($b, $name = '', $time = 3, $blood = 1, $group = 1, $battl
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
mysql_query("INSERT INTO `bots` (`name`, `prototype`, `battle`, `hp`) VALUES ('$name', '$b', '', '" . $bot['maxhp'] . "')");
|
mysql_query("INSERT INTO `bots` (`name`, `prototype`, `battle`, `hp`) VALUES ('$name', '$b', '', '" . $bot['maxhp'] . "')");
|
||||||
$botnames = [];
|
|
||||||
$botnames[$name] = 1;
|
|
||||||
$hps[$b] = $bot['maxhp'];
|
$hps[$b] = $bot['maxhp'];
|
||||||
$botid1 = mysql_insert_id();
|
$botid1 = mysql_insert_id();
|
||||||
$cond = " `id` = '$botid1' ";
|
$cond = " `id` = '$botid1' ";
|
||||||
@ -164,14 +167,14 @@ function battlewithbot($b, $name = '', $time = 3, $blood = 1, $group = 1, $battl
|
|||||||
$hps = [];
|
$hps = [];
|
||||||
|
|
||||||
foreach ($otherbots as $k => $v) {
|
foreach ($otherbots as $k => $v) {
|
||||||
if (@$botnames[$v['name']]) {
|
if (CaveBots::$botnames[$v['name']]) {
|
||||||
$i = 1;
|
$i = 1;
|
||||||
while (@$botnames["$v[name] ($i)"]) $i++;
|
while (CaveBots::$botnames["$v[name] ($i)"]) $i++;
|
||||||
$botname = "$v[name] ($i)";
|
$botname = "$v[name] ($i)";
|
||||||
} else {
|
} else {
|
||||||
$botname = $v['name'];
|
$botname = $v['name'];
|
||||||
}
|
}
|
||||||
$botnames[$botname] = 1;
|
CaveBots::$botnames[$botname] = 1;
|
||||||
if (!@$hps[$v['id']]) {
|
if (!@$hps[$v['id']]) {
|
||||||
$hps[$v['id']] = mysql_fetch_array(mysql_query("SELECT `maxhp` FROM `users` WHERE `id` = '$v[id]' LIMIT 1"));
|
$hps[$v['id']] = mysql_fetch_array(mysql_query("SELECT `maxhp` FROM `users` WHERE `id` = '$v[id]' LIMIT 1"));
|
||||||
}
|
}
|
||||||
@ -828,8 +831,9 @@ if (@$_GET['speak']) {
|
|||||||
header("location: dialog.php?char=$tmp[2]");
|
header("location: dialog.php?char=$tmp[2]");
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
if ($tmp[0] == "b" && isset($dialogs[$bots[$tmp[1]]])) {
|
|
||||||
header("location: dialog.php?char=" . $bots[$tmp[1]]);
|
if ($tmp[0] == "b" && isset($dialogs[CaveBots::$bots[$tmp[1]]])) {
|
||||||
|
header("location: dialog.php?char=" . CaveBots::$bots[$tmp[1]]);
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -860,20 +864,20 @@ if (@$_GET['attack']) {
|
|||||||
} elseif (isset($rec['bot'])) {
|
} elseif (isset($rec['bot'])) {
|
||||||
$btl = $rec['battle'];
|
$btl = $rec['battle'];
|
||||||
if ($btl > 0) {
|
if ($btl > 0) {
|
||||||
battlewithbot($bots[$rec['bot']], "", "", 10, 0, 0, $btl);
|
battlewithbot(CaveBots::$bots[$rec['bot']], "", "", 10, 0, 0, $btl);
|
||||||
} else {
|
} else {
|
||||||
$firstbot = $bots[$rec['bot']];
|
$firstbot = CaveBots::$bots[$rec['bot']];
|
||||||
$otherbots = [];
|
$otherbots = [];
|
||||||
$rec['cnt']--;
|
$rec['cnt']--;
|
||||||
|
|
||||||
while ($rec['cnt'] > 0) {
|
while ($rec['cnt'] > 0) {
|
||||||
$otherbots[] = ['id' => $bots[$rec['bot']], 'name' => $botnames[$rec['bot']]];
|
$otherbots[] = ['id' => CaveBots::$bots[$rec['bot']], 'name' => CaveBots::$botnames[$rec['bot']]];
|
||||||
$rec["cnt"]--;
|
$rec["cnt"]--;
|
||||||
}
|
}
|
||||||
|
|
||||||
while ($rec = mysql_fetch_assoc($r)) {
|
while ($rec = mysql_fetch_assoc($r)) {
|
||||||
while ($rec['cnt'] > 0) {
|
while ($rec['cnt'] > 0) {
|
||||||
$otherbots[] = ['id' => $bots[$rec['bot']], 'name' => $botnames[$rec['bot']]];
|
$otherbots[] = ['id' => CaveBots::$bots[$rec['bot']], 'name' => CaveBots::$botnames[$rec['bot']]];
|
||||||
$rec['cnt']--;
|
$rec['cnt']--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1382,7 +1386,7 @@ if ($user['hp'] <= 0) {
|
|||||||
|
|
||||||
function drawmap($map1, $players, $x, $y, $direction)
|
function drawmap($map1, $players, $x, $y, $direction)
|
||||||
{
|
{
|
||||||
global $base, $user, $botnames, $imgdata;
|
global $base, $user, CaveBots::$botnames, $imgdata;
|
||||||
$startx = max($x * 2 - 8, 0);
|
$startx = max($x * 2 - 8, 0);
|
||||||
$starty = max($y * 2 - 8, 0);
|
$starty = max($y * 2 - 8, 0);
|
||||||
|
|
||||||
@ -1480,13 +1484,13 @@ function drawmap($map1, $players, $x, $y, $direction)
|
|||||||
|
|
||||||
function drawbot($cell, $x, $y)
|
function drawbot($cell, $x, $y)
|
||||||
{
|
{
|
||||||
global $botnames, $imgdata, $bots, $dialogs, $user, $floor;
|
global CaveBots::$botnames, $imgdata, CaveBots::$bots, $dialogs, $user, $floor;
|
||||||
$data = explode("/", $cell);
|
$data = explode("/", $cell);
|
||||||
$i = 1;
|
$i = 1;
|
||||||
$bc = (count($data) - 1) / 2;
|
$bc = (count($data) - 1) / 2;
|
||||||
while ($data[$i]) {
|
while ($data[$i]) {
|
||||||
$bot = $data[$i];
|
$bot = $data[$i];
|
||||||
$botname = $botnames[$bot];
|
$botname = CaveBots::$botnames[$bot];
|
||||||
$cnt = $data[$i + 1];
|
$cnt = $data[$i + 1];
|
||||||
if ($i == 1) {
|
if ($i == 1) {
|
||||||
if ($bc == 1) {
|
if ($bc == 1) {
|
||||||
@ -1526,7 +1530,7 @@ function drawmap($map1, $players, $x, $y, $direction)
|
|||||||
|
|
||||||
$rrm = $user['room'];
|
$rrm = $user['room'];
|
||||||
|
|
||||||
if (isset($dialogs[$bots[$data[1]]]) && ($bots[$data[1]] == 11147 && $user['room'] == 74)) {
|
if (isset($dialogs[CaveBots::$bots[$data[1]]]) && (CaveBots::$bots[$data[1]] == 11147 && $user['room'] == 74)) {
|
||||||
$ret .= "<img title=\"$botname" . ($cnt > 1 ? " ($cnt)" : "") . "\" " . ($y == 1 && $x == 3 ? "onclick=\"speakattackmenu(event);\"" : "") . " width=\"" . $imgdata[$x][$y]["wd"] . "\" height=\"" . $imgdata[$x][$y]["ht"] . "\" src=\"/i/dungeon/mobs/$rrm/$bot.gif\" style=\"position: absolute; left: " . $imgdata[$x][$y]["x"][$bn] . "px; top: " . $imgdata[$x][$y]["y"] . "px;" . ($x == 3 && $y == 1 ? "cursor: pointer;" : "") . ($x == 3 ? "z-index: " . (99 - ($y * 5)) . ";" : "") . "\" />";
|
$ret .= "<img title=\"$botname" . ($cnt > 1 ? " ($cnt)" : "") . "\" " . ($y == 1 && $x == 3 ? "onclick=\"speakattackmenu(event);\"" : "") . " width=\"" . $imgdata[$x][$y]["wd"] . "\" height=\"" . $imgdata[$x][$y]["ht"] . "\" src=\"/i/dungeon/mobs/$rrm/$bot.gif\" style=\"position: absolute; left: " . $imgdata[$x][$y]["x"][$bn] . "px; top: " . $imgdata[$x][$y]["y"] . "px;" . ($x == 3 && $y == 1 ? "cursor: pointer;" : "") . ($x == 3 ? "z-index: " . (99 - ($y * 5)) . ";" : "") . "\" />";
|
||||||
} else {
|
} else {
|
||||||
$ret .= "<img title=\"$botname" . ($cnt > 1 ? " ($cnt)" : "") . "\" " . ($y == 1 && $x == 3 ? " onclick=\"document.location.href='cave.php?attack=1';\"" : "") . " width=\"" . $imgdata[$x][$y]["wd"] . "\" height=\"" . $imgdata[$x][$y]["ht"] . "\" src=\"/i/dungeon/mobs/$rrm/$bot.gif\" style=\"position: absolute; left: " . $imgdata[$x][$y]["x"][$bn] . "px; top: " . $imgdata[$x][$y]["y"] . "px;" . ($x == 3 && $y == 1 ? "cursor: pointer;" : "") . ($x == 3 ? "z-index: " . (99 - ($y * 5)) . ";" : "") . "\" />";
|
$ret .= "<img title=\"$botname" . ($cnt > 1 ? " ($cnt)" : "") . "\" " . ($y == 1 && $x == 3 ? " onclick=\"document.location.href='cave.php?attack=1';\"" : "") . " width=\"" . $imgdata[$x][$y]["wd"] . "\" height=\"" . $imgdata[$x][$y]["ht"] . "\" src=\"/i/dungeon/mobs/$rrm/$bot.gif\" style=\"position: absolute; left: " . $imgdata[$x][$y]["x"][$bn] . "px; top: " . $imgdata[$x][$y]["y"] . "px;" . ($x == 3 && $y == 1 ? "cursor: pointer;" : "") . ($x == 3 ? "z-index: " . (99 - ($y * 5)) . ";" : "") . "\" />";
|
||||||
@ -1543,7 +1547,7 @@ function drawmap($map1, $players, $x, $y, $direction)
|
|||||||
$i = 1;
|
$i = 1;
|
||||||
$d = $data[2];
|
$d = $data[2];
|
||||||
$bot = $data[$i];
|
$bot = $data[$i];
|
||||||
$botname = $botnames[$bot];
|
$botname = CaveBots::$botnames[$bot];
|
||||||
$cnt = $data[$i + 1];
|
$cnt = $data[$i + 1];
|
||||||
$ret = "<img title=\"" . $dialogs[$d] . "\" " . ($x == 3 && $y == 1 ? "onclick=\"speakmenu(event);\"" : "") . " width=\"" . $imgdata[$x][$y]["wd"] . "\" height=\"" . $imgdata[$x][$y]["ht"] . "\" src=\"/i/dungeon/npcs/$d.gif\" style=\"position: absolute; left: " . $imgdata[$x][$y]["x"][1] . "px; top: " . $imgdata[$x][$y]["y"] . "px;" . ($x == 3 && $y == 1 ? "cursor: pointer;" : "") . ($x == 3 ? "z-index: " . (99 - ($y * 5)) . ";" : "") . "\" />";
|
$ret = "<img title=\"" . $dialogs[$d] . "\" " . ($x == 3 && $y == 1 ? "onclick=\"speakmenu(event);\"" : "") . " width=\"" . $imgdata[$x][$y]["wd"] . "\" height=\"" . $imgdata[$x][$y]["ht"] . "\" src=\"/i/dungeon/npcs/$d.gif\" style=\"position: absolute; left: " . $imgdata[$x][$y]["x"][1] . "px; top: " . $imgdata[$x][$y]["y"] . "px;" . ($x == 3 && $y == 1 ? "cursor: pointer;" : "") . ($x == 3 ? "z-index: " . (99 - ($y * 5)) . ";" : "") . "\" />";
|
||||||
return $ret;
|
return $ret;
|
||||||
@ -1551,7 +1555,7 @@ function drawmap($map1, $players, $x, $y, $direction)
|
|||||||
|
|
||||||
function drawuser($cell, $x, $y)
|
function drawuser($cell, $x, $y)
|
||||||
{
|
{
|
||||||
global $botnames, $imgdata, $party;
|
global CaveBots::$botnames, $imgdata, $party;
|
||||||
$data = explode("/", $cell);
|
$data = explode("/", $cell);
|
||||||
$i = 1;
|
$i = 1;
|
||||||
$bc = (count($data) - 1);
|
$bc = (count($data) - 1);
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
|
||||||
* Author: lopiu
|
|
||||||
* Date: 30.08.2020
|
|
||||||
* Time: 13:07
|
|
||||||
*/
|
|
||||||
|
|
||||||
class UserInfo extends User
|
class UserInfo extends User
|
||||||
{
|
{
|
||||||
|
@ -1625,7 +1625,7 @@ class fbattle
|
|||||||
}
|
}
|
||||||
$winers .= implode("</B>, <B>", $this->t1);
|
$winers .= implode("</B>, <B>", $this->t1);
|
||||||
$lomka = $this->t2;
|
$lomka = $this->t2;
|
||||||
include('../cave/win.php');
|
//include('../cave/win.php');
|
||||||
} elseif (in_array($ss[0], $this->t2)) {
|
} elseif (in_array($ss[0], $this->t2)) {
|
||||||
$flag = 2;
|
$flag = 2;
|
||||||
foreach ($this->t2 as $k => $v) {
|
foreach ($this->t2 as $k => $v) {
|
||||||
@ -1727,7 +1727,7 @@ class fbattle
|
|||||||
if ($this->battle_data['x'] > 0 || $this->battle_data['y'] > 0 && $this->user['laba'] > 0) {
|
if ($this->battle_data['x'] > 0 || $this->battle_data['y'] > 0 && $this->user['laba'] > 0) {
|
||||||
mysql_query('UPDATE `users` SET `x` = "' . $this->user['xf'] . '", `y` = "' . $this->user['yr'] . '" WHERE `laba` = "' . $this->user['laba'] . '" AND `x` = "' . $this->battle_data['x'] . '" AND `y` = "' . $this->battle_data['y'] . '" AND `battle` = "' . $this->battle_data['id'] . '" LIMIT 1');
|
mysql_query('UPDATE `users` SET `x` = "' . $this->user['xf'] . '", `y` = "' . $this->user['yr'] . '" WHERE `laba` = "' . $this->user['laba'] . '" AND `x` = "' . $this->battle_data['x'] . '" AND `y` = "' . $this->battle_data['y'] . '" AND `battle` = "' . $this->battle_data['id'] . '" LIMIT 1');
|
||||||
}
|
}
|
||||||
include("../cave/lose.php");
|
//include("../cave/lose.php");
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
|
|
||||||
function getchance($p)
|
function getchance($p)
|
||||||
{
|
{
|
||||||
@ -22,7 +22,7 @@ function cavesys($text)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (in_array($user['room'], $caverooms)) {
|
if (in_array($user['room'], $caverooms)) {
|
||||||
include("caveitems.php");
|
include("CaveItems.php");
|
||||||
mysql_query('LOCK TABLES `cavebots` WRITE, `caveitems` WRITE, `shop` WRITE, `caveparties` WRITE');
|
mysql_query('LOCK TABLES `cavebots` WRITE, `caveitems` WRITE, `shop` WRITE, `caveparties` WRITE');
|
||||||
$location = mysql_fetch_array(mysql_query("SELECT `x`, `y`, `dir`, `floor` FROM `caveparties` WHERE `user` = '$user[id]' LIMIT 1"));
|
$location = mysql_fetch_array(mysql_query("SELECT `x`, `y`, `dir`, `floor` FROM `caveparties` WHERE `user` = '$user[id]' LIMIT 1"));
|
||||||
|
|
||||||
@ -49,7 +49,8 @@ if(in_array($user['room'], $caverooms)) {
|
|||||||
$floor = $location['floor'];
|
$floor = $location['floor'];
|
||||||
|
|
||||||
$r = mysql_query("SELECT `bot`, `x`, `y`, `cnt` FROM `cavebots` WHERE `battle` = '" . $this->battle_data["id"] . "'");
|
$r = mysql_query("SELECT `bot`, `x`, `y`, `cnt` FROM `cavebots` WHERE `battle` = '" . $this->battle_data["id"] . "'");
|
||||||
$i = 0; $cnt = 0;
|
$i = 0;
|
||||||
|
$cnt = 0;
|
||||||
while ($rec = mysql_fetch_assoc($r)) {
|
while ($rec = mysql_fetch_assoc($r)) {
|
||||||
$bot = $rec['bot'];
|
$bot = $rec['bot'];
|
||||||
$cnt = $rec['cnt'];
|
$cnt = $rec['cnt'];
|
||||||
@ -68,7 +69,7 @@ if(in_array($user['room'], $caverooms)) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($user['caveleader'] > 0) {
|
if ($user['caveleader'] > 0) {
|
||||||
$bots = array(1 => 10025, 2 => 10026, 3 => 10027, 4 => 10028, 5 => 10031, 6 => 10032, 7 => 10033, 8 => 10034);
|
$bots = [1 => 10025, 2 => 10026, 3 => 10027, 4 => 10028, 5 => 10031, 6 => 10032, 7 => 10033, 8 => 10034];
|
||||||
$tp = 1;
|
$tp = 1;
|
||||||
while ($tp <= $cnt) {
|
while ($tp <= $cnt) {
|
||||||
addActions(time(), 'win_bot_' . $bots[$bot], 0, $user['id']);
|
addActions(time(), 'win_bot_' . $bots[$bot], 0, $user['id']);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
include_once '../config.php';
|
include_once '../config.php';
|
||||||
include_once '../functions.php';
|
include_once '../functions.php';
|
||||||
include_once '../cave/cave_bots.php';
|
//include_once '../cave/cave_bots.php';
|
||||||
$cavebots = $botnames;
|
$cavebots = $botnames;
|
||||||
|
|
||||||
function addlogs($id, $log)
|
function addlogs($id, $log)
|
||||||
@ -390,7 +390,7 @@ class fbattle
|
|||||||
}
|
}
|
||||||
$winers .= implode("</B>, <B>", $this->t1);
|
$winers .= implode("</B>, <B>", $this->t1);
|
||||||
$lomka = $this->t2;
|
$lomka = $this->t2;
|
||||||
include('cave/win.php');
|
//include('cave/win.php');
|
||||||
} elseif (in_array($ss[0], $this->t2)) {
|
} elseif (in_array($ss[0], $this->t2)) {
|
||||||
$flag = 2;
|
$flag = 2;
|
||||||
foreach ($this->t2 as $k => $v) {
|
foreach ($this->t2 as $k => $v) {
|
||||||
@ -486,7 +486,7 @@ class fbattle
|
|||||||
if ($this->battle_data['x'] > 0 || $this->battle_data['y'] > 0 && $this->user['laba'] > 0) {
|
if ($this->battle_data['x'] > 0 || $this->battle_data['y'] > 0 && $this->user['laba'] > 0) {
|
||||||
mysql_query('UPDATE `users` SET `x` = "' . $this->user['xf'] . '", `y` = "' . $this->user['yr'] . '" WHERE `laba` = "' . $this->user['laba'] . '" AND `x` = "' . $this->battle_data['x'] . '" AND `y` = "' . $this->battle_data['y'] . '" AND `battle` = "' . $this->battle_data['id'] . '" LIMIT 1');
|
mysql_query('UPDATE `users` SET `x` = "' . $this->user['xf'] . '", `y` = "' . $this->user['yr'] . '" WHERE `laba` = "' . $this->user['laba'] . '" AND `x` = "' . $this->battle_data['x'] . '" AND `y` = "' . $this->battle_data['y'] . '" AND `battle` = "' . $this->battle_data['id'] . '" LIMIT 1');
|
||||||
}
|
}
|
||||||
include("cave/lose.php");
|
//include("cave/lose.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($lomka) {
|
if ($lomka) {
|
||||||
|
@ -11,7 +11,7 @@ if (isset($_POST['end'])) {
|
|||||||
|
|
||||||
include('config.php');
|
include('config.php');
|
||||||
include('functions.php');
|
include('functions.php');
|
||||||
include('cave/cave_bots.php');
|
//include('cave/cave_bots.php');
|
||||||
$cavebots = $botnames;
|
$cavebots = $botnames;
|
||||||
|
|
||||||
db::c()->query('LOCK TABLES `bots` WRITE, `laba_obj` WRITE, `qst_user` WRITE, `qst` WRITE, `` WRITE, `battle` WRITE, `logs` WRITE, `users` WRITE, `inventory` WRITE, `magic` WRITE, `effects` WRITE, `online` WRITE, `clans` WRITE, `variables` WRITE, `logs_arena` WRITE, `cavebots` WRITE, `caveparties` WRITE');
|
db::c()->query('LOCK TABLES `bots` WRITE, `laba_obj` WRITE, `qst_user` WRITE, `qst` WRITE, `` WRITE, `battle` WRITE, `logs` WRITE, `users` WRITE, `inventory` WRITE, `magic` WRITE, `effects` WRITE, `online` WRITE, `clans` WRITE, `variables` WRITE, `logs_arena` WRITE, `cavebots` WRITE, `caveparties` WRITE');
|
||||||
|
4
inf.php
4
inf.php
@ -7,7 +7,7 @@ $userInfo = new UserInfo($login);
|
|||||||
$presentsModel = new PresentsModel($userInfo->id);
|
$presentsModel = new PresentsModel($userInfo->id);
|
||||||
$presentsList = $presentsModel->getAllPresents();
|
$presentsList = $presentsModel->getAllPresents();
|
||||||
$userInfo->watcher_id = $userInfo->id ?? null;
|
$userInfo->watcher_id = $userInfo->id ?? null;
|
||||||
if (empty($user->id)): ?>
|
if (empty($userInfo->id)): ?>
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="ru">
|
<html lang="ru">
|
||||||
<head>
|
<head>
|
||||||
@ -23,7 +23,7 @@ if (empty($user->id)): ?>
|
|||||||
|
|
||||||
<html lang="ru">
|
<html lang="ru">
|
||||||
<head>
|
<head>
|
||||||
<title>Информация о <?= $user->login ?></title>
|
<title>Информация о <?= $userInfo->login ?></title>
|
||||||
<meta charset=UTF-8"/>
|
<meta charset=UTF-8"/>
|
||||||
<link href="css/main.css" rel="stylesheet">
|
<link href="css/main.css" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
|
Loading…
Reference in New Issue
Block a user