-
Notifications
You must be signed in to change notification settings - Fork 0
/
userview.php
48 lines (34 loc) · 1.08 KB
/
userview.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
<?php
error_reporting(E_ALL);
require_once "config";
$url=$_GET['id'];
print_r($data);
if($data){
//echo "<link href='css/bootstrap.min.css' rel='stylesheet'";
//echo "<script src = 'js/bootstrap.min.js'></script";
//echo "<script src = 'jquery-1.12.0.min.js'></script";
echo'
<h1>User Details Table</h1>
<<table class="table table-bordered" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>Name</th>
<th>Surname</th>
<th>Email</th>
<th>Phone Number</th>
<th>Employer</th>
<th>Last Updated</th>
</tr>
</thead>
<tbody>
<tr>';
echo '<tr>';
echo '<td>'.$data['displayName'].'</td>';
echo '<td>'.$data['surname'].'</td>';
echo '<td>'.$data['email'].'</td>';
echo '<td>'.$data['phoneNumber'].'</td>';
echo '<td>'.$data['employer'].'</td>';
echo '<td>'.$data['lastCheckedIntertations'].'</td>';
echo '</tr>';
}
?>