-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbatchmates.php
220 lines (190 loc) · 10.3 KB
/
batchmates.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?php
include('session.php');
include('db.php');
$survey_maxcount_qry = mysqli_query($con,"SELECT survey_maxattemp FROM `survey_maxcount` WHERE survey_ownerID = '$login_id'");
$survey_maxattemp = mysqli_fetch_array($survey_maxcount_qry);
$page = 'alumni';
if ($login_level == '1')
{
$result = mysqli_query($con,"SELECT * FROM `user_student_detail` WHERE student_userID = $login_id");
$data = mysqli_fetch_array($result);
$data_img = $data['student_img'];
}
else if ($login_level == '2')
{
$result = mysqli_query($con,"SELECT * FROM `user_teacher_detail` WHERE teacher_userID = $login_id");
$data = mysqli_fetch_array($result);
$data_img = $data['teacher_img'];
}
else if ($login_level == '3')
{
$result = mysqli_query($con,"SELECT * FROM `user_admin_detail` WHERE admin_userID = $login_id");
$data = mysqli_fetch_array($result);
$data_img = $data['admin_img'];
}
else
{}
?>
<!DOCTYPE html>
<html>
<head>
<?php include('meta.php');?>
<?php include('style_css.php');?>
<title></title>
</head>
<body class="menu-affix">
<div class="bg-dark dk" id="wrap">
<div id="top">
<?php include ('top_navbar.php');?>
</div>
<!-- /#top -->
<?php
if ($login_level == '1')
{
include('sidebar_student.php');
}
if ($login_level == '2')
{
include('sidebar_teacher.php');
}
elseif($login_level == '3')
{
include('sidebar_admin.php');
}
else
{}
?>
<!-- /#left -->
<div id="content">
<div class="outer">
<header class="head">
<div class="main-bar">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.php">Dashboard</a></li>
<li class="breadcrumb-item active"> Alumni</li>
</ol>
</div>
<!-- /.main-bar -->
</header>
<div class="inner bg-light lter">
<div class="box">
<ul class="nav nav-tabs">
<?PHP
$student_sql = mysqli_query($con,"SELECT YEAR(usd.student_year_grad) as student_year_grad,cd.department_ID ,cd.department_name FROM `user_student_detail` usd
INNER JOIN cvsu_department cd ON usd.student_department = cd.department_ID WHERE usd.student_ID = $login_id");
$student_d = mysqli_fetch_array($student_sql);
$s_department_ID = $student_d['department_ID'];
$s_student_year_grad =$student_d['student_year_grad'];
$dep =mysqli_query($con,"SELECT * FROM `cvsu_department`");
while ($data = mysqli_fetch_array($dep)) {
if ($data['department_ID'] == $s_department_ID) {
?><li class="active"><a data-toggle="tab" href="#<?php echo $data['department_ID'] ?>"><?php echo $data['department_name']; ?></a></li><?php
}
else{
?><li><a data-toggle="tab" href="#<?php echo $data['department_ID'] ?>"><?php echo $data['department_name'] ?></a></li>
<?php
}
}
?>
</ul>
<div class="tab-content">
<?php
$dep =mysqli_query($con,"SELECT * FROM `cvsu_department`");
while ($data = mysqli_fetch_array($dep)) {
if ($data['department_ID'] == $s_department_ID) {
?>
<div id="<?php echo $data['department_ID']; ?>" class="tab-pane fade in active">
<center><h3><?php echo $data['department_name']." Batch of ".$s_student_year_grad; ?></h3></center>
<p>
<table class="table table-bordered table-advance table-hover">
<thead>
<tr>
<th>Name</th>
<th>Student Number</th>
</tr>
</thead>
<tbody>
<?php
$s = mysqli_query($con,"SELECT student_fName,student_mName,student_lName,student_IDNumber FROM `user_student_detail` usd INNER JOIN cvsu_department cd ON usd.student_department = cd.department_ID WHERE department_ID = ".$data['department_ID']." AND student_year_grad LIKE '%$s_student_year_grad%'");
$no = 0;
while ($f_all = mysqli_fetch_array($s)) {
$no+=$no+1;
?>
<tr>
<td><?php echo $no ?>. <?php echo $f_all['student_fName']." ".$f_all['student_mName']." ". $f_all['student_lName']?></td>
<td><?php echo $f_all['student_IDNumber']?></td>
</tr>
<?php
}
?>
</tbody>
<tfoot>
<tr>
<th></th>
<th></th>
</tr>
</tfoot>
</table>
</p>
</div>
<?php
}
else{
?> <div id="<?php echo $data['department_ID']; ?>" class="tab-pane fade">
<center><h3><?php echo $data['department_name']." Batch of ".$s_student_year_grad; ?></h3></center>
<p>
<table class="table table-bordered table-advance table-hover">
<thead>
<tr>
<th>Name</th>
<th>Student Number</th>
</tr>
</thead>
<tbody>
<?php
$s = mysqli_query($con,"SELECT student_fName,student_mName,student_lName,student_IDNumber FROM `user_student_detail` usd INNER JOIN cvsu_department cd ON usd.student_department = cd.department_ID WHERE department_ID = ".$data['department_ID']." AND student_year_grad LIKE '%$s_student_year_grad%'");
$no = 0;
while ($f_all = mysqli_fetch_array($s)) {
$no+=$no+1;
?>
<tr>
<td><?php echo $no ?>. <?php echo $f_all['student_fName']." ".$f_all['student_mName']." ". $f_all['student_lName']?></td>
<td><?php echo $f_all['student_IDNumber']?></td>
</tr>
<?php
}
?>
</tbody>
<tfoot>
<tr>
<th></th>
<th></th>
</tr>
</tfoot>
</table>
</p>
</div>
<?php
}
}
?>
<!-- SELECT YEAR(usd.student_year_grad),cd.department_ID ,cd.department_name FROM `user_student_detail` usd
INNER JOIN cvsu_department cd ON usd.student_department = cd.department_ID WHERE usd.student_ID = 1
SELECT YEAR(usd.student_year_grad),cd.department_ID ,cd.department_name FROM `user_student_detail` usd
INNER JOIN cvsu_department cd ON usd.student_department = cd.department_ID
SELECT YEAR(usd.student_year_grad),cd.department_ID ,cd.department_name,usd.student_fName FROM `user_student_detail` usd INNER JOIN cvsu_department cd ON usd.student_department = cd.department_ID WHERE department_ID = 1,2,3 -->
</div>
</div>
</div>
<!-- /.inner -->
</div>
<!-- /.outer -->
</div>
<!-- /#content -->
</div>
<!-- /#wrap -->
<?php include('footer.php');?>
<!-- /#footer -->
<?php include ('script.php');?>
</body>
</html>