-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview_schools.php
More file actions
48 lines (44 loc) · 1.47 KB
/
view_schools.php
File metadata and controls
48 lines (44 loc) · 1.47 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php include_once 'inc/top.php'; ?>
<table border="0"><tr valign="top"><td width="310"> <!-- start of frame -->
<?php include_once 'inc/aside.php'; ?>
</td><td>
<main class="tmp-base">
<?php $list_nav_key = 'Manage Schools'; include_once 'inc/nav.php'; ?>
<form class="tmp-form tmp-form-toolbar" <?php echo FORM_ATTRIB_GET; ?>>
<table border="0">
<tr valign="bottom">
<td>
<input type="search" name="q" placeholder="Search school name.." list="hint_school" required />
<?php echo $hint_school; ?>
</td>
<td align="right" width="1">
<input type="hidden" name="v" value="true" />
<button type="submit" class="pri">Search</button>
</td>
</tr>
</table>
</form>
<table class="tmp-table" border="0">
<tr>
<th width="1">#</th>
<th nw>School Name</th>
<th nw>Sort Code</th>
<th>Title</th>
<th nw>Principal</th>
<th>Email Address</th>
<th>Phone Number</th>
<th>Home Address</th>
<th>Location</th>
<th>RETINKEN Zone</th>
<th> </th>
</tr>
<tbody>
<?php echo $rows; ?>
</tbody>
</table>
<p></p>
<?php echo $pager->nav; ?>
</main>
</td></tr></table> <!-- end of frame -->
<?php include_once 'inc/footer.php'; ?>
<?php include_once 'inc/end.php'; ?>