-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson.php
63 lines (57 loc) · 1.64 KB
/
person.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
<?php
session_start();
echo $_SESSION['personTitle'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<h3>List of Users</h3>
</div>
<div class="row">
<?php
if ($_SESSION['personTitle']==1){
echo '<p>
<a href="person_create.php" class="btn btn-success">Add Person</a>
</p>';
}
?>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
<?php
require '../../database.php';
$pdo = Database::connect();
$sql = 'SELECT * FROM AS05_person ORDER BY personID DESC';
foreach ($pdo->query($sql) as $row) {
echo '<tr>';
echo '<td>'. $row['personName'] . '</td>';
if ($_SESSION['personTitle']==1){
echo '<td width=250>';
echo '<a class="btn" href="person_read.php?id='.$row['personID'].'">Read</a>';
echo ' ';
echo '<a class="btn btn-success" href="person_update.php?id='.$row['personID'].'">Update</a>';
echo ' ';
echo '<a class="btn btn-danger" href="person_delete.php?id='.$row['personID'].'">Delete</a>';
echo '</td>';
}
echo '</tr>';
}
Database::disconnect();
?>
</tbody>
</table>
</div>
</div> <!-- /container -->
</body>
</html>