-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteachers_list.php
63 lines (45 loc) · 1.18 KB
/
teachers_list.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
<!-- This file is used by admin to view the list of all teachers in ISE Dept.-->
<?php
include("dbConnection.php");
?>
<div class="panel panel-default">
<div class="panel panel-heading">
<h2 style="text-align:center">ISE Teachers List</h2>
<h2>
<a href="dash.php?q=9" class="btn btn-success">Add Teacher</a>
</h2>
<div class="panel panel-body">
<table class="table table-striped">
<tr>
<th>ID</th>
<th>Name</th>
<th>Subject</th>
<th>Email</th>
</tr>
<?php
$sql="select * from teachers";
$result=mysqli_query($con,$sql) or die('error!');
if($result)
echo "";
else
echo"Error: could not display the results!" . mysqli_error($con);
$sn=0;
$count=0;
while($row=mysqli_fetch_array($result))
{
$sn++;
?>
<tr>
<td> <?php echo $sn; ?> </td>
<td> <?php echo $row['teacher_name'] ?> </td>
<td> <?php echo $row['subject'] ?> </td>
<td> <?php echo $row['email'] ?> </td>
</tr
<?php
$count++;
}
?>
</table>
</div>
</div>
</div>