-
Notifications
You must be signed in to change notification settings - Fork 0
/
customers.php
65 lines (55 loc) · 1.95 KB
/
customers.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
<?php
//database config here
require_once('config/db.php');
require_once('lib/pdo_db.php');
require_once('models/Customer.php');
//instantiatie customer
$customer = new Customer();
//get customer
$customers = $customer->getCustomers();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>View Customers</title>
</head>
<body>
<div class="container mt-4">
<div class="btn-group" role="group">
<a href="customers.php" class="btn btn-primary">Customers</a>
<a href="transactions.php" class="btn btn-secondary">Transactions</a>
</div>
<hr>
<h2>Customers</h2>
<!--Table starts here-->
<table class="table table-stripped">
<thread>
<tr>
<th>Customer ID</th>
<th>Name</th>
<th>Email</th>
<th>Date</th>
</tr>
</thread>
<tbody>
<?php
foreach($customers as $cus): ?>
<tr>
<td><?php echo $cus->id; ?></td>
<td><?php echo $cus->first_name; ?>
<?php echo $cus->last_name; ?>
</td>
<td><?php echo $cus->email; ?></td>
<td><?php echo $cus->created_at; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<br>
<p><a href="index.php" class="btn btn-light mt-2">Go Back</a></p>
</div>
</body>
</html>