-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification_page.php
45 lines (43 loc) · 1.44 KB
/
notification_page.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
<title>Notification</title>
<link rel="shortcut icon" href="<?php echo base_url('assets/image/logo.png') ?>">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style type="text/css">
body{
background: url('<?php echo base_url('assets/image/11.jpg') ?>') no-repeat;
background-position: center;
background-size: cover;
font-family: sans-serif;
margin-bottom: 380px;
}
</style>
<body>
<div class="container">
<div class="box">
<table class="table table-striped" id="table">
<h2>Notifications</h2><br>
<thead>
<tr>
<th>No</th>
<th>Full Name</th>
<th>Date of Appointment</th>
<th>Description</th>
<th>Message</th>
</tr>
</thead>
<tbody>
<?php $no=1; foreach ($data as $d) {?>
<tr>
<td><?php echo $no++?></td>
<td><?php echo $d->fullname?></td>
<td><?php echo $d->doa?></td>
<td><?php echo $d->description?></td>
<td><?php echo $d->message?></td>
<!--BUTTON Feedback-->
<td><a type="button" class="btn btn-danger" href="<?= base_url() ?>index.php/welcome/deletenotification/<?= $d->id ?>" ><i class="fas fa-user-times"></i></a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</body>