Файл: admin/settings.php
Строк: 35
<?php
########################################
# Скрипт: iCoreCMS v0.1 #
# Автор: Mobil #
# Файл: admin/settings.php [Админка] #
# E-Mail: romash_v@inbox.ru #
# ICQ: 8557572 #
# http://profiwm.com/us49 #
########################################
/* Подключаем системный файл. */
include '../incfiles/system.php';
/* Титульное название. */
$p['title'] = 'Админка / Система';
/* Проверка уровня доступа. */
access(2);
/* Подключаем верх. */
include '../incfiles/top.php';
$s = mysql_fetch_assoc(mysql_query("SELECT keywords, description, copy, title FROM sys WHERE id = '1'"));
if(isset($_POST['go']))
{
$keywords = text($_POST['keywords']);
$description = text($_POST['description']);
$copy = text($_POST['copy']);
$title = text($_POST['title']);
mysql_query
("UPDATE sys SET
keywords = '".guard($keywords)."',
description = '".guard($description)."',
copy = '".guard($copy)."',
title = '".guard($title)."' WHERE id = '1' ");
header ('Location: index.php');
}
?>
<div class="menu">
<form method="POST" action="settings">
Ключевые cлова: [Keywords]<br />
<textarea rows="7" cols="20" name="keywords"><?=$s['keywords']?></textarea><br />
Описание сайта: [Description]:<br />
<textarea rows="7" cols="20" name="description"><?=$s['description']?></textarea><br />
Copyright:<br />
<input type="name" value="<?=$s['copy']?>" name="copy"><br />
Название cайта: [Title]<br />
<input type="name" value="<?=$s['title']?>" name="title"><br />
<input type="submit" name="go" value="Сохранить"></form></div>
<div class="menu">« <a href="/admin">Админка</a></div>
<?
/* Подключаем низ. */
include '../incfiles/bottom.php';
?>