-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
35 lines (31 loc) · 796 Bytes
/
home.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
<?php
?>
<div>
<table>
<th>Urgent(3)--pill</th>
<tr>
<td>
<a href="*">Blueberry Larsen needs a report card. 2 days past due.[checkbox]</a>
</td>
</tr>
<th>Monday, July 1</th>
<?php
while ($row = $results->fetch_assoc()) {
?>
<tr>
<td>
<a href="*"><?=$row['first_name']?> needs to be tested. [checkbox]</a>
<a href="*">Vivian Squirrel needs to be screened. [checkbox]</a>
</td>
</tr>
<?php
}
?>
<th>Tuesday, July 2</th>
<tr>
<td>
<a href="*">Chippy Samuel needs to be tested. [checkbox]</a>
</td>
</tr>
</table>
</div>