-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.php
More file actions
38 lines (35 loc) · 963 Bytes
/
messages.php
File metadata and controls
38 lines (35 loc) · 963 Bytes
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
<?php
$pageName = "Messages";
$pageGroup = "User Profile";
$currentPage = "Messages";
require_once "./includes/header.php";
require_once "./includes/sidebar.php";
?>
<body>
<main id="content">
<!-- BREADCRUM -->
<?php require_once "./includes/breadcrum.php" ?>
<!-- YOUR CONTENT STARTS FROM HERE -->
<section class="my-5">
<table class="table">
<thead>
<tr>
<th>image</th>
<th>User name</th>
<th>Desciption</th>
<th>Time</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</section>
</main>
</body>
</html>