Размер файла: 1.88Kb
<?php
//////////////////////////////////////////////////////////////////////////////////////////////
// //
// ---------- WAP-engine ---------- //
// //
// Автор : CHUMA //
// e-mail : [email protected] //
// Site : http:// //
// WAP : http:// //
// ICQ : 111-75-74 //
// //
//////////////////////////////////////////////////////////////////////////////////////////////
// ВЫ НЕ ИМЕЕТЕ ПРАВО ИЗМЕНЯТЬ КОД СКРИПТА ДЛЯ ДАЛЬНЕЙШЕГО РАСПРОСТРАНЕНИЯ //
//////////////////////////////////////////////////////////////////////////////////////////////
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
extract($HTTP_SERVER_VARS);
extract($HTTP_SESSION_VARS);
require ("../config.php"); //Подключаем настройки сайта. (config.php)
require ("../themes/$themes.php"); //Вставляем скин сайта.
session_name("SESID");
session_start();
$file = fopen("../data/welcome.txt","r");
$wel = fread ($file, 1000);
if ($_SESSION['login']==$nickadmina && $_SESSION['pass']==$passadmina)
{
echo"<form method=\"post\" action=\"editwel.php\">";
// Ник админа на сайте
echo"<center>Приветствие:<br><input name=\"wwel\" value=\"$wel\"/><br>";
echo"<input value=\"Настроить\" name=\"do\" type=\"submit\"/></center></form>";
print"<a href=\"main.php\">В админку</a>";
}
else
{
echo"Неправильный ввод.<br> <a href=index.php>Назад</a>";
}
require ("../templates/foot.php"); //Вставляем низ сайта. (templates/foot.php)
?>