-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist-donations.php
More file actions
32 lines (32 loc) · 1.02 KB
/
Copy pathlist-donations.php
File metadata and controls
32 lines (32 loc) · 1.02 KB
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
<?php include 'header.php'; ?>
<section>
<h2>Admin</h2>
<h3>Donations List</h3>
<p>
This is the contents of the donation table.
</p>
<table>
<tr>
<th>Name</th>
<th>Donation Date</th>
<th>Amount</th>
<!-- <th> </th> -->
</tr>
<?php foreach ($donations as $donation) : ?>
<tr>
<td><?php echo $donation['name']; ?></td>
<td><?php echo $donation['donation_date']; ?></td>
<td><?php echo $donation['donation_amount']; ?></td>
<!--
*** needed? ***
<td>
<form>
<input type="submit" value="Edit" />
</form>
</td>
-->
</tr>
<?php endforeach; ?>
</table>
</section>
<?php include 'footer.php'; ?>