-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
71 lines (58 loc) · 1.59 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
require_once "config.php";
$subjects = get_subjects($con);
$localities = get_localities($con);
if(isset($_POST['submit'])){
$query = handle_search($con);
}
?>
<center>
<a href="index.php"> Search</a> | <a href="students.php"> Add Student</a> | <a href="subjects.php"> Add Subject</a>
</center>
<h1>Search Students</h1>
<form action="" method="post">
Search Keyword: <input type="text" name="keyword" /> Locality: <select name="locality" id="">
<option value ="" >Select </option>
<?php
while( $subject = $localities->fetch_row() ){
?>
<option value ="<?php echo $subject[0] ; ?>" > <?php echo $subject[0]; ?></option>
<?php
}
?>
</select> Subjects :
<?php
foreach($subjects as $subject){
?>
<label><input type="checkbox" name="subject[]" value ="<?php echo $subject['id'] ; ?>" /> <?php echo $subject['name'] ; ?></label>
<?php
}
?>
<input type="submit" name="submit" value="Search">
</form>
<?php if(mysqli_num_rows($query)){ ?>
<table border="1">
<thead>
<tr>
<th>Photo</th>
<th>Name</th>
<th>Roll No</th>
<th>Locality</th>
<th>Subject</th>
</tr>
</thead>
<?php
while( $students = $query->fetch_row() ){
?>
<tr>
<td><?php echo $students[4]?"<img width='50' height='50' src='$students[4]' />":""; ?></td>
<td><?php echo $students[1]; ?></td>
<td><?php echo $students[2]; ?></td>
<td><?php echo $students[3]; ?></td>
<td><?php get_subject($con,$students[0]); ?></td>
</tr>
<?php
}
?>
</table>
<?php } ?>