-
Notifications
You must be signed in to change notification settings - Fork 0
/
trash.php
24 lines (24 loc) · 923 Bytes
/
trash.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
<?php
include "functions.php";
$members_data = getMembersData("*", 0);
$memberDataCount = count($members_data);
include "header.php";
?>
<div class="col-12 trashMemberName text-center">
<h1> Trash </h1>
</div>
<?php
for ($div = 0; $div < $memberDataCount; $div++) { ?>
<div class="justify-content-center member-wrap p-4 rounded m-2">
<div class="float-right">
<a href="restore.php?member_id=<?= $members_data[$div]['member_id'] ?>"><i class="fa fa-refresh" aria-hidden="true"></i></a>
<a href="trashmember.php?member_id=<?= $members_data[$div]['member_id'] ?>"><i class="fa fa-trash" aria-hidden="true"></i></a>
</div>
<h2><?= $members_data[$div]['member_id'] ?>. <?= $members_data[$div]['full_name'] ?> </h2>
<p><?= $members_data[$div]['mobile_number'] ?></p>
<p class="float-right"><?= $members_data[$div]['doj'] ?></p>
</div>
<?php
}
include "footer.php";
?>