Просмотр файла click_club/moder_unban.php

Размер файла: 1.47Kb
<?
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
function myErrorHandler ($errno, $errstr, $errfile, $errline) {}
set_error_handler("myErrorHandler");
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
extract($HTTP_SERVER_VARS);
extract($HTTP_SESSION_VARS);
include "inc/conf_db.php";
include"inc/conf.php";
include"inc/head.php";
//////////////////
session_name("ID");
session_start();
/////////////////
$login=$_SESSION['login'];
$password=$_SESSION['password'];
//////////////////
$q = mysql_query("select * from `user` where  login='$login';");
$data = mysql_fetch_array($q);
if(($_SESSION['login'])==$moder OR $moder2  && !$_SESSION['login']=="" && !($_SESSION['password'])=="" &&  ($_SESSION['password'])==$data['pass']){
//////////////////
@mysql_query("delete from `ban` where name='$user'");
echo"$user успешно удален из бан-листа!<br/><a href=\"moder_ban_list.php\">&#x041D;&#x0430;&#x0437;&#x0430;&#x0434;</a><br/>";
//////////////////
include"inc/foot.php"; exit;
}else{
echo"&#x0421;&#x0442;&#x0440;&#x0430;&#x043D;&#x0438;&#x0446;&#x0430; &#x043D;&#x0435; &#x0441;&#x0443;&#x0449;&#x0435;&#x0441;&#x0442;&#x0432;&#x0443;&#x0435;&#x0442;, &#x0438;&#x043B;&#x0438; &#x0431;&#x044B;&#x043B;&#x0430; &#x0443;&#x0434;&#x0430;&#x043B;&#x0435;&#x043D;&#x0430;!<br/><a href=\"panel.php\">&#x0412; &#x043F;&#x0430;&#x043D;&#x0435;&#x043B;&#x044C;</a><br/>";
include"inc/foot.php"; exit;}
?>