-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_lectures.php
113 lines (103 loc) · 6.36 KB
/
edit_lectures.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php include'header.php'; ?>
<div class="pcoded-content">
<div class="pcoded-inner-content">
<div class="main-body">
<div class="page-wrapper">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<div class="d-inline">
<h4>Editable Table</h4>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="page-header-breadcrumb">
<ul class="breadcrumb-title">
<li class="breadcrumb-item">
<a href="index.html"> <i class="feather icon-home"></i> </a>
</li>
<li class="breadcrumb-item"><a href="#!">Editable Table</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="page-body">
<div class="card">
<div class="card-header">
<h5>Edit venues</h5>
<span>Click on buttons to perform actions</span>
</div>
<div class="card-block">
<div class="table-responsive dt-responsive">
<table class="table table-striped table-bordered table-hover nowrap" id="basic-btn">
<thead>
<tr class="table-secondary">
<th>#</th>
<th>Class</th>
<th>Level</th>
<th>Total Class Size</th>
<th>Add</th>
<th>Remove</th>
</tr>
</thead>
<tbody>
<?php
$sql =mysqli_query($db, "select * from vw_lecture_population where combined_count >1 order by combined_population desc");
$sn= 0;
while($lecture = $sql -> fetch_assoc()){
$lects=explode(',', $lecture['combined_list']);
$sn++;
?>
<tr>
<input type="hidden" name="combined_id" value="<?php echo $lecture['combined_id']; ?>" >
<td><?php echo $sn; ?></td>
<td><?php
$view= " ";
foreach($lects as $val){
$course=mysqli_fetch_assoc(mysqli_query($db, "select * from vw_full_course where course_id=(select course_id from lecture where lecture_id=".$val.")"));
$dept=mysqli_fetch_assoc(mysqli_query($db, "select * from vw_full_course where department_id=".$course['department_id']));
$level=mysqli_fetch_assoc(mysqli_query($db, "select * from vw_full_course where level_id=".$course['level_id']));
$view.=$course['course_code'].'('.$dept['dept_code'].'), ';
}
echo substr($view, 0, -2);
?></td>
<td><?php echo $level['level_name']; ?></td>
<td><?php echo $lecture['combined_population']; ?></td>
<td>
<a href="add_combine.php?combine_id=<?php echo $lecture['combined_id']; ?>"><input type="submit" value="add to list" class="btn btn-primary"></a>
</td>
<td>
<a href="uncombine.php?combine_id=<?php echo $lecture['combined_id']; ?>"><input type="submit" value="remove" class="btn btn-danger"></a>
</td>
</tr>
<?php } ?>
</tbody>
<tfoot>
<tr>
<th>#</th>
<th>Class</th>
<th>Level</th>
<th>Total Class Size</th>
<th>Add</th>
<th>Remove</th>
</tr>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include'footer_view.php'; ?>