-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexit.php
More file actions
33 lines (31 loc) · 902 Bytes
/
exit.php
File metadata and controls
33 lines (31 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
session_start();
session_unset();
include ('db.php');
?>
<html>
<head>
<title>LEV13</title>
<!-- Добавляем инструменты -->
<?php include('link.php') ?>
</head>
<body class="dir" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="">
<!-- Верхнее меню сайта -->
<?php include('head.php');
//<!-- Логотип и фон -->
include('logo.php');
//<!-- Регистрация и </div> -->
include('login.php');
//<!-- Шапка сайта -->
include('banner.php');
//<!-- Меню сайта -->
include('menu.php');
//<!-- Основная страница -->
echo ('<div class="body"><center><br/>');
echo "Вы успешно вышли с сайт! <a href='index.php'>Главная страница</a>";
echo ('</center></div>');
//<!-- footer -->
include('footer.php') ?>
</body>
<!-- copyright -->
<?php include('copy.php') ?>