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

Размер файла: 2.31Kb
<?php
##############################
##	     WAP-ENGINE 	    ##
##############################
##						    ##
## Автор : CHUMA			##
## e-mail : [email protected]		##
## WAP : http://wapeng.info ##
## ICQ : 13-14-11			##
##                        	##
##############################
##  ВЫ НЕ ИМЕЕТЕ ПРАВО      ##
##  ИЗМЕНЯТЬ КОД СКРИПТА    ##
##  ДЛЯ ДАЛЬНЕЙШЕГО         ##
##  РАСПРОСТРАНЕНИЯ         ##
##############################
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);

session_name("SESID");
session_start();

include ("../config.php"); //Подключаем настройки сайта. (config.php)

if ($_GET[act]=="set")
{

 if ($_SESSION['login']==$nickadmina && md5($_SESSION['pass'])==$passadmina)
  {
$confnews = $_POST[wnews];
$setnews=trim("$confnews");
$date = date("d.m.Y", time());
$confignews = "$date $setnews"."\r\n";

$fp = file("../data/news.txt");
$zap=implode($fp);
$fip=fopen("../data/news.txt","w");
fwrite($fip, $confignews.$zap);
fclose($fip);

header ("location: news.php?set=1");
  } 
   else
  {
   include ("../themes/$themes.php"); //Вставляем скин сайта.
   echo'Неправильный ввод.<br><a href=index.php>Назад</a>';
   include ("../templates/foot.php"); //Вставляем низ сайта. (templates/foot.php)
  }

}

if ($_GET[act]=="")
{
include ("../themes/$themes.php"); //Вставляем скин сайта.

if ($_SESSION['login']==$nickadmina && md5($_SESSION['pass'])==$passadmina)
  {  
if ($_GET[set]=="1")
{
echo"<center>Новость добавлена</center>";
}
  echo"<form method=\"post\" action=\"news.php?act=set\">";
  echo"<center>Новость:<br><input name=\"wnews\" value=\"$news\"/><br>";	
  echo"<input value=\"Добавить\" name=\"do\" type=\"submit\"/></center></form>";
  	
print"<a href=\"main.php\">В админку</a>";
  
  } 
   else
  {
    echo'Неправильный ввод.<br> <a href=index.php>Назад</a>';
  }
include ("../templates/foot.php"); //Вставляем низ сайта. (templates/foot.php)
}

?>