Файл: test.masteram.us/lenta_set.php
Строк: 47
<?
include 'Core.php';
$set['title'] = 'Настройка уведомлений '.$ank[nick];
include_once 'sys/inc/thead.php';
title();
if (isset($_POST['save'])){
if (isset($_POST['lenta_foto']) && $_POST['lenta_foto']==1)
{
$q['lenta_foto']=1;
mysql_query("UPDATE `frends` SET `lenta_foto` = '1' WHERE `user` = '$get' AND `frend` = '$user[id]' LIMIT 1");
}
else
{
$q['lenta_foto']=0;
mysql_query("UPDATE `frends` SET `lenta_foto` = '0' WHERE `user` = '$get' AND `frend` = '$user[id]' LIMIT 1");
}
if (!isset($err))msg('Изменения успешно приняты');
}
err();
echo "<form method='post' action='?$passgen'>n";
echo "<label><input type='checkbox' name='lenta_forum'".($q[lenta_forum]?" checked='checked'":null)." value='1' />Уведомлять о новых темах в форуме</label><br />n";
echo "<label><input type='checkbox' name='lenta_obmen'".($q[lenta_obmen]?" checked='checked'":null)." value='1' />Уведомлять о новых файлах в обменнике</label><br />n";
echo "<label><input type='checkbox' name='lenta_foto'".($q[lenta_foto]?" checked='checked'":null)." value='1' />Уведомлять о новых темах в форуме</label><br />n";
echo "<input type='submit' name='save' value='Сохранить' />n";
echo "</form>n";
include_once 'sys/inc/tfoot.php';
?>