Просмотр файла admin/config.php

Размер файла: 2.75Kb
<?
#-------------------------------------------#
# Автор скрипта : -=Орёл=- (c)              #
# email         : [email protected]                #  
# icq           : 952-042                   #
# Скрипт распространяется бесплатно:)       #
# Пишу скрипты на заказ обращатся в icq     #                                         
#-------------------------------------------#
include_once("../inc/ini.php");
include_once("../inc/connect.php");
include_once("../inc/function.php");
include_once("../inc/config.php");
include_once("../themes/$config_themes/index.php");
$OR_SES = mysql_query("SELECT * FROM admin WHERE id='$_SESSION[id_admin]' and pass='$_SESSION[pass_admin]'");
if (mysql_num_rows($OR_SES)){
if ($tid == 'go'){
$tem              = $_POST['tem'];
$format           = $_POST['format'];
$size             = $_POST['size'];
$site             = $_POST['site'];
$dir_file         = $_POST['dir_file'];
$config_kat       = $_POST['config_kat'];
$config_smilelist = $_POST['config_smilelist'];

$mp = "$tem|$format|$size|$site|$dir_file|$config_kat|$config_smilelist";
$fb = fopen(DIR.'inc/dat/sitting.dat','w+');
$f  = fputs($fb,$mp);
if ($f){$msg[] = 'Настройки сохранены';}
}


echo $div['title'].'Настройки'.$div['title_end'];

echo $div['menu'];
include(DIR."inc/msg.php");
echo '<form action="?tid=go" method="post">';
echo 'Тема по умолчанию<br />';
echo '<select name="tem">';
$dir = opendir(DIR.'themes');
while ($tem = readdir($dir)){
if ($tem == '.' || $tem == '..'){continue;}
echo '<option value="'.$tem.'" ';if ($data1[0] == $tem){echo 'selected="selected"';}echo '>'.$tem.'</option>';
}
echo '</select><br />';
echo 'Форматы для загрузки через запятую<br />';
echo '<input type="text" name="format" value="'.$format_file.'"/><br />';
echo 'Максимальный размер для загрузки (мб)<br />';
echo '<input type="text" name="size" value="'.$config_max_size.'"/><br />';
echo 'Домен<br />';
echo '<input type="text" name="site" value="'.$SITE.'"/><br />';
echo 'Дириктория с файлами<br />';
echo '<input type="text" name="dir_file" value="'.$dir_file.'"/><br />';
echo 'Файлов на странице в каталоге<br />';
echo '<input type="text" name="config_kat" value="'.$config_kat.'"/><br />';
echo 'Смайлов на странице<br />';
echo '<input type="text" name="config_smilelist" value="'.$config_smilelist.'"/><br />';
echo '<input type="submit" value="Изменить"/><br />';
echo '</form>';
echo '<a href="index.php">На главную</a><br />';
echo $div['menu_end'];

}else{
header('Location: index.php');
}

include_once("../themes/$config_themes/foot.php");
?>