Файл: pages/setting.php
Строк: 47
<?php # Created by Up
include_once '../sistem/start.php';
include_once $config['OTS'].'sistem/config.php';
//include_once $config['OTS'].'sistem/function.php';
//include_once $config['OTS'].'sistem/db.php';
//include_once $config['OTS'].'sistem/users.php';
if(isset($_POST['go']))
{
$_SESSION['wiev_opis']=$_POST['opisanie']==1?2:1;
$_SESSION['kol_sites']=($_POST['site']>=1 and $_POST['site']<=15)?((int)abs($_POST['site'])):5;
header('location: ../?act=yes');
exit;
}
$config['TITLE']='Настройка';
$config['link']=7;
include_once $config['OTS'].'sistem/head.php';
print '<form action="setting.php" method="POST">';
print 'Сколько обьектов выводить на одной странице:<br /><select name="site">';
for($i=1; $i<=15; ++$i)
print '<option'.($_SESSION['kol_sites']==$i?' selected="selected"':'').' value="'.$i.'">'.$i.'</option>';
print '</select><br />';
print '<input type="checkbox" name="opisanie" value="1"'.($_SESSION['wiev_opis']!=1?' checked="checked"':'').' /> Выводить описание<br />';
print '<input class="submit" type="submit" name="go" value="Настроить" /><br /></form>';
include_once $config['OTS'].'sistem/foot.php';
?>