Файл: pages/settings/set_img.php
Строк: 81
<?
only_reg();
$set['title']='Мои настройки';
require_once ("../../core/cuctema/head.php");
title();
aut();
if (isset($_POST['save']))
{
$user['panel']=intval($_POST['panel']);
if (in_array($user['panel'], array(1,2,3)))$user['panel']=$user['panel']; else $user['panel']=1;
mysql_query("UPDATE `user` SET `panel` = '$user[panel]' WHERE `id` = '$user[id]'");
header("Location: ?set_img");
}
if (isset($_GET['font_size']))
{
$user['panel_font_size']=htmlspecialchars($_GET['font_size']);
if (in_array($user['panel_font_size'], array('small','medium')))$user['panel_font_size']=$user['panel_font_size']; else $user['panel_font_size']='medium';
mysql_query("UPDATE `user` SET `panel_font_size` = '$user[panel_font_size]' WHERE `id` = '$user[id]'");
header("Location: ?set_img");
}
?>
<div class="main123">
<form method="POST" action="">
<input type="radio" name="panel" value="1"<? echo ($user['panel']==1?' checked = "checked"':NULL);?>> <label for="icons">Иконки</label><br />
<input type="radio" name="panel" value="2"<? echo ($user['panel']==2?' checked = "checked"':NULL);?>> <label for="words">Слова</label><br />
<input type="radio" name="panel" value="3"<? echo ($user['panel']==3?' checked = "checked"':NULL);?>> <label for="letters">Буквы</label><br />
<input type="submit" value="Сохранить" name="save"/>
</form>
</div>
<div class="stnd_padd light_border_bottom main123_new">
<div>Выберите размер шрифта:</div>
<? echo ($user['panel_font_size']=='small'?'<b class="service_item">':"<a href='?set_img&font_size=small' class='arrow_link'><span>");?>Маленький<? echo ($user['panel_font_size']=='small'?'</b>':"</span></a>");?> <span class="service_links_block">|</span>
<? echo ($user['panel_font_size']=='medium'?'<b class="service_item">':"<a href='?set_img&font_size=medium' class='arrow_link'><span>");?>Большой<? echo ($user['panel_font_size']=='medium'?'</b>':"</span></a>");?>
</div>
<div class="main123">
<a href="?panel_style" class="arrow_link"><span>Стиль панелей</span></a><br />
</div>
<div class="menu123">
<a href="/pages/settings/"> ← <span>Назад</span></a>
</div>
</div><?
require_once ("../../core/cuctema/foot.php");
?>