-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlogout.php
48 lines (42 loc) · 989 Bytes
/
logout.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* @System HP-pc Rax
* @author Rakshit shah <Rakshitshah1994@gmail.com>
* @copyright 2015-2017 |Rakshit shah
* @license http://rakshit.in/license/license.php | PHP License 3.0
* @version 1.1
* @since File available since Release 1.0.0
*/
session_start();
include("header.php");
session_destroy();
?>
<section id="page">
<header id="pageheader" class="homeheader">
<h2 class="sitedescription">Student Information System. </h2>
</header>
<section id="contents">
<article class="post">
<header class="postheader">
<h2><a href="#">Logged Out Successfully</a>...<br>
You will be redirecting to Login page...
<br>
</h2>
<?php
header( "refresh:3;url=admin.php" );
?>
<p class="postinfo"> </p>
</header>
<p>
<article class="post">
<footer class="postfooter"></footer>
</article>
</p>
</article>
<div class="blog-nav"></div>
</section>
<div class="clear"></div>
<div class="clear"></div>
</section>
</div>
<?php include("footer.php"); ?>