-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.php
73 lines (71 loc) · 2.61 KB
/
view.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
if(!isset($_SESSION)) session_start();
if(isset($_SESSION['row'])){
// print_r($_SESSION['row']);
// echo session_id();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View Details</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
</head>
<body>
<div class="container ">
<table class="table text-center table-striped table-bordered table-hover">
<thead>
<tr class="bg-success">
<th colspan='2' scope="col" >Leaked information about <?=$_SESSION['row']['name']?></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Facebook Name</th>
<td><?=$_SESSION['row']['name']?></td>
</tr>
<tr>
<th scope="row">Facebook Id</th>
<td><?=$_SESSION['row']['fb_id']?></td>
</tr>
<tr>
<th scope="row">Gender</th>
<td><?=$_SESSION['row']['gender']?></td>
</tr>
<tr>
<th scope="row">Relationship Status</th>
<td><?=$_SESSION['row']['r_status']?></td>
</tr>
<tr >
<th scope="row">Phone Number</th>
<td><?=$_SESSION['row']['phone_no']?></td>
</tr>
<tr>
<th scope="row">Email</th>
<td><?=$_SESSION['row']['email']?></td>
</tr>
<tr>
<th scope="row">Address</th>
<td><?=$_SESSION['row']['address']?></td>
</tr>
<tr>
<th scope="row">Works at</th>
<td><?=$_SESSION['row']['work_at']?></td>
</tr>
<tr>
<th scope="row">Work Start date</th>
<td><?=$_SESSION['row']['work_start']?></td>
</tr>
<tr>
<th scope="row">Date of Birth</th>
<td><?=$_SESSION['row']['dob']?></td>
</tr>
</tbody>
</table>
<a href="index.php" class="btn btn-primary"><- Back to Home</a>
</div>
</body>
</html>