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

Размер файла: 1.33Kb
<?
/*

Автор: SaDiEv
Сайт: comwap.ru
Пример работы: comwap.ru/top

Страница: admin/delete.php
Назначение: Удаление сайта

*/

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/sis.php";
include "../config/other.php";
$TITLES = "Удаление сайта";

if($brodilka==wap){include "../theme/".$wap_theme."/head.php";}
else {include "../theme/".$web_theme."/head.php";}

$connect=mysql_pconnect ($DB_HOST, $DB_USER, $DB_PASS);
mysql_select_db($DB_NAME);
$q_u=mysql_query("select * from users where id='".$id."';");
$data=mysql_fetch_array($q_u);
$titles = $data['title'];
if($_SESSION['pass']==$password) { 
print 'Удалить <b>'.$titles.'</b>?<br>';
print "[<a href='del.php?id=$id'>Да</a>] [<a href='top.php'>Нет</a>]<br>";
 } else { 
print 'Ошибка!'; } 


mysql_close($connect);
include "dat/baner.dat";
print "<div id='foot'><center>$autor<center></div>";
if($brodilka==wap){include "../theme/".$wap_theme."/foot.php";}
else {include "../theme/".$web_theme."/foot.php";}
?>