-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass_quiz.php
85 lines (78 loc) · 3.66 KB
/
class_quiz.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
<?php include('header_dashboard.php'); ?>
<?php include('session.php'); ?>
<?php $get_id = $_GET['id']; ?>
<body>
<?php include('navbar_teacher.php'); ?>
<div class="container-fluid">
<div class="row-fluid">
<?php include('quiz_link.php'); ?>
<div class="span9" id="content">
<div class="row-fluid">
<!-- breadcrumb -->
<?php $class_query = mysqli_query($conn,"select * from teacher_class
LEFT JOIN class ON class.class_id = teacher_class.class_id
LEFT JOIN subject ON subject.subject_id = teacher_class.subject_id
where teacher_class_id = '$get_id'")or die(mysqli_error());
$class_row = mysqli_fetch_array($class_query);
?>
<ul class="breadcrumb">
<li><a href="#"><?php echo $class_row['class_name']; ?></a> <span class="divider">/</span></li>
<li><a href="#"><?php echo $class_row['subject_code']; ?></a> <span class="divider">/</span></li>
<li><a href="#">School Year: <?php echo $class_row['school_year']; ?></a> <span class="divider">/</span></li>
<li><a href="#"><b>Practice Quiz</b></a></li>
</ul>
<!-- end breadcrumb -->
<!-- block -->
<div id="block_bg" class="block">
<div class="navbar navbar-inner block-header">
<div id="" class="muted pull-left"></div>
</div>
<div class="block-content collapse in">
<div class="span12">
<form action="delete_class_quiz.php<?php echo '?id='.$get_id; ?>" method="post">
<table cellpadding="0" cellspacing="0" border="0" class="table" id="">
<a data-toggle="modal" href="#backup_delete" id="delete" class="btn btn-danger" name=""><i class="icon-trash icon-large"></i></a>
<?php include('modal_delete_class_quiz.php'); ?>
<thead>
<tr>
<th></th>
<th>Quiz title</th>
<th>Description</th>
<th>QUIZ TIME (IN MINUTES)</th>
<th>Quiz Type</th>
</tr>
</thead>
<tbody>
<?php
$query = mysqli_query($conn,"select * FROM class_quiz
LEFT JOIN quiz ON quiz.quiz_id = class_quiz.quiz_id
where teacher_class_id = '$get_id'
order by date_added DESC ")or die(mysqli_error());
while($row = mysqli_fetch_array($query)){
$id = $row['class_quiz_id'];
?>
<tr id="del<?php echo $id; ?>">
<td width="30">
<input id="optionsCheckbox" class="uniform_on" name="selector[]" type="checkbox" value="<?php echo $id; ?>">
</td>
<td><?php echo $row['quiz_title']; ?></td>
<td><?php echo $row['quiz_description']; ?></td>
<td><?php echo $row['quiz_time'] / 60; ?></td>
<td><?php echo $row['date_added']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</form>
</div>
</div>
</div>
<!-- /block -->
</div>
</div>
</div>
<?php include('footer.php'); ?>
</div>
<?php include('script.php'); ?>
</body>
</html>