-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlecture-schedule.php
43 lines (37 loc) · 1.5 KB
/
lecture-schedule.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
<table class="table table-striped table-schedule">
<thead>
<tr class="bg-theme-colored2">
<th>Course</th>
<th>Class</th>
<th>Center</th>
<th>Batchtiming</th>
<th>Day</th>
<th>ClassRoom</th>
<th>Subject</th>
</tr>
</thead>
<?php
$get2 = mysqli_query($conn,"SELECT * FROM managetimetable");
while($row2 = mysqli_fetch_array($get2))
{
$course=$row2['Course'];
$class1=$row2['Class'];
$branch = $row2['Center'];
$Batchtiming = $row2['Batchtiming'];
$subject=$row2['Day'];
$tdate=$row2['ClassRoom'];
$ttime=$row2['Subject'];
?>
<tbody>
<tr>
<td><?php echo $course; ?></td>
<td><strong><?php echo $class1; ?></strong></td>
<td><?php echo $branch; ?></td>
<td><?php echo $Batchtiming; ?></td>
<td><?php echo $subject; ?></td>
<td><?php echo $tdate; ?></td>
<td><?php echo $ttime; ?></td>
</tr>
<?php }?>
</tbody>
</table>