Файл: user/hello.php
Строк: 63
<?php
/* Мод "Приветствие"
* Версия v0.0.1
* Дата последнего редактирования 23.01.2015
* Двиг DCMS Special
* Модифицировал densnet
* Файл hello.php
* Описание: приватность странички пользователя
*/
require_once '../sys/inc/start.php';
require_once H . 'sys/inc/compress.php';
require_once H . 'sys/inc/sess.php';
require_once H . 'sys/inc/settings.php';
require_once H . 'sys/inc/db_connect.php';
require_once H . 'sys/inc/ipua.php';
require_once H . 'sys/inc/fnc.php';
require_once H . 'sys/inc/user.php';
user::only_reg();
$set['title'] = 'Общие настройки';
require_once H . 'sys/inc/thead.php';
title();
err();
aut();
if (isset($user)) {
echo "<table class = 'title'><tr><td>";
echo "<center>";
echo "<a class = 'act2 rl' href = '/info.php' title = 'Страница пользователя'>" . img('vuser.png') . "</a>";
echo "</center>";
echo "</td><td>";
echo "<center>";
echo "<a class = 'act2 rl' href = '/user/private/' title = 'Приватность страницы'>" . img('vlock.png') . "</a>";
echo "</center>";
echo "</td><td>";
echo "<center>";
echo "<a class = 'act' title = 'Приветствие страницы'>" . img('vstatus.png') . "</a>";
echo "</center>";
echo "</td></tr></table>";
}
if (isset($_POST['save'])) {
if (isset($_POST['welcome']) && text::utf8_strlen($_POST['welcome']) <= 100) {
if (preg_match('#[^A-zА-я0-9 _-=+()*?.,]#ui', $_POST['welcome'])) {
$err[] = 'В поле "Приветствие" используются запрещенные символы';
} else {
$user['welcome'] = $_POST['welcome'];
mysql_query("UPDATE `user` SET `welcome` = '" . mysql_real_escape_string($user['welcome']) . "' WHERE `id` = '$user[id]' LIMIT 1");
}
} else {
$err[] = 'Ошибка в поле (Приветствие)';
}
if (!isset($err)) {
msg('Изменения успешно приняты');
header("Refresh: 1; url=/user/hello.php");
echo "<a href = '/user/hello.php'><div class = 'razd'>" . img16('left.png') . " Назад</div></a>";
require_once H . 'sys/inc/tfoot.php';
}
}
echo "<form class = 'razd' action = '?$passgen' method = 'POST'>";
echo "<b>Приветствие</b> (150 симв.)<br />";
echo "<div class = 'inputs'>";
echo "<input type = 'text' name = 'welcome' value = '" . text::toOutput($user['welcome'], false) . "' maxlength = '150' />";
echo "<div class = 'input-icon'>" . img16('pen.png') . "</div>";
echo "</div>";
echo "<button name = 'save' class = 'button sign-ins'>" . img16('save.png') . " Сохранить</button></form>";
if (isset($_SESSION['refer']) && $_SESSION['refer'] != NULL && otkuda($_SESSION['refer'])) {
echo "<div class = 'razd'><a class = 'add' href = '$_SESSION[refer]'>" . img16('left.png') . " " . otkuda($_SESSION['refer']) . "</a></div>";
}
echo "<div class = 'razd'><a class = 'add' href = '/umenu.php'>" . img16('left.png') . " Кабинет</a></div>";
require_once H . 'sys/inc/tfoot.php';