-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.php
57 lines (53 loc) · 1.9 KB
/
index2.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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Day Tracker</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="phone">
<div class="content">
<header>
<?php include 'header.php'; ?>
</header>
<nav>
<?php include 'nav.php'; ?>
</nav>
<main>
<div class="dashboard">
<div class="alerts">
<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>
</div>
</main>
</div>
</div>
</body>
</html>