View file admin/delete.php

File size: 1.33Kb
  1. <?
  2. /*
  3.  
  4. Автор: SaDiEv
  5. Сайт: comwap.ru
  6. Пример работы: comwap.ru/top
  7.  
  8. Страница: admin/delete.php
  9. Назначение: Удаление сайта
  10.  
  11. */
  12.  
  13. Error_Reporting(E_ALL & ~E_NOTICE); Error_Reporting (ERROR | WARNING);
  14. extract($HTTP_GET_VARS); extract($HTTP_POST_VARS); extract($HTTP_COOKIE_VARS); extract($HTTP_SERVER_VARS); extract($HTTP_SESSION_VARS);
  15. //сессии
  16. session_name("SESID"); session_start();
  17. // подключаем настройки
  18. include "../config/sis.php";
  19. include "../config/other.php";
  20. $TITLES = "Удаление сайта";
  21.  
  22. if($brodilka==wap){include "../theme/".$wap_theme."/head.php";}
  23. else {include "../theme/".$web_theme."/head.php";}
  24.  
  25. $connect=mysql_pconnect ($DB_HOST, $DB_USER, $DB_PASS);
  26. mysql_select_db($DB_NAME);
  27. $q_u=mysql_query("select * from users where id='".$id."';");
  28. $data=mysql_fetch_array($q_u);
  29. $titles = $data['title'];
  30. if($_SESSION['pass']==$password) {
  31. print 'Удалить <b>'.$titles.'</b>?<br>';
  32. print "[<a href='del.php?id=$id'>Да</a>] [<a href='top.php'>Нет</a>]<br>";
  33. } else {
  34. print 'Ошибка!'; }
  35.  
  36.  
  37. mysql_close($connect);
  38. include "dat/baner.dat";
  39. print "<div id='foot'><center>$autor<center></div>";
  40. if($brodilka==wap){include "../theme/".$wap_theme."/foot.php";}
  41. else {include "../theme/".$web_theme."/foot.php";}
  42. ?>