Просмотр файла NuclearCMS_v.1.0.0/pages/setting.php

Размер файла: 1.37Kb
<?php
require_once "../system/connect.php";
require_once "../system/config.php";
require_once "../system/functions.php";
require_once "../system/dannuser.php";
require_once "../system/start.php";
echo '<title>настройки</title>';
if(($_SESSION['slogin']!='') && ($_SESSION['spass'])) { 
if(empty($_GET['act'])) { $_GET['act']="index"; }
if($_GET['act']=="index") {
echo '<form action="setting.php?act=editset" method="post">';
echo "Выбор стиля:<br>";
echo '<select name="skins">';
echo '<option value="'.$dthema.'">'.$dthema.'</option>';
$dir = opendir ("../styles"); 
while ($styles = readdir ($dir)) {
if(ereg("\.css$","$styles")) {
$style=str_replace(".css","",$styles);
if(($style!='.') && ($style!='..')) {
echo'<option value="'.$style.'">'.$style.'</option>'; } } }
echo'</select><br>';
closedir ($dir);
echo '<input type="submit" name="sub" value="изменить"></form><br>'; }
if($_GET['act']=="editset") {
$skins=check($_POST['skins']);
if(eregi("[^a-z0-9-]",$skins)) die("Ошибка, скин не определился!");
$update_set=mysql_query("UPDATE `users` SET `style`='".mysql_escape_string($skins)."' WHERE `id`='".$did."' LIMIT 1;");
if($update_set) {
echo 'настройки изменены!<br>'; } } }
echo '<img src="../act.png" alt="" /><a href="../index.php">на главную</a><br>';
require_once "../foot.php";
?>