-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsearch_other_class.php
34 lines (32 loc) · 1.62 KB
/
search_other_class.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
<!-- block -->
<div class="block" id="search_class">
<div class="navbar navbar-inner block-header">
<div id="" class="muted pull-left"><strong>Search Past Batches</strong></div>
</div>
<div class="block-content collapse in">
<div class="span12">
<form method="post" action="search_class.php">
<div class="control-group">
<label>School Year:</label>
<div class="controls">
<select name="school_year" class="span8" required>
<option></option>
<?php
$query = mysql_query("select * from school_year order by school_year DESC");
while($row = mysql_fetch_array($query)){
?>
<option><?php echo $row['school_year']; ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="control-group">
<div class="controls">
<button name="search" class="btn btn-info"><i class="icon-search"></i> Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- /block -->