forked from SAAR-IITP/SAAR-IITP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.php
29 lines (29 loc) · 1.02 KB
/
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
<?php
session_start();
unset($_SESSION['fname']);
unset($_SESSION['lname']);
unset($_SESSION['cid']);
unset($_SESSION['contact']);
unset($_SESSION['fb']);
unset($_SESSION['graduation']);
unset($_SESSION['degree']);
unset($_SESSION['dept']);
unset($_SESSION['linkden']);
unset($_SESSION['dob']);
unset($_SESSION['cid']);
unset($_SESSION['email']);
unset($_SESSION['loggedin']);
unset($_SESSION['user_id']);
unset($_SESSION['img_url']);
unset($_SESSION['employment_type']);
unset($_SESSION['present_employer']);
unset($_SESSION['designation']);
unset($_SESSION['address']);
unset($_SESSION['country']);
unset($_SESSION['state']);
unset($_SESSION['city']);
unset($_SESSION['achievements']);
unset($_SESSION['loggedin']);
unset($_SESSION['access_token']);
header("location: index.php");
?>