Server : Apache System : Linux server.xvl.jdw.mybluehostin.me 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64 User : critatp ( 1208) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system Directory : /home/critatp/public_html/admin/ |
<?php
include("config.php");
if(!isset($_SESSION['userid'])){
header("Location: logout.php");
}
$id = $_GET['id'];
$feedback_info = $db->selectRow('feedback', '*', $id);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo $settings->name; ?> | Admin Panel</title>
<!-- Site favicon -->
<link rel='shortcut icon' type='image/x-icon' href='images/favicon.ico' />
<!-- /site favicon -->
<!-- Entypo font stylesheet -->
<link href="css/entypo.css" rel="stylesheet">
<!-- /entypo font stylesheet -->
<!-- Font awesome stylesheet -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- /font awesome stylesheet -->
<!-- Bootstrap stylesheet min version -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- /bootstrap stylesheet min version -->
<!-- Integral core stylesheet -->
<link href="css/integral-core.css" rel="stylesheet">
<!-- /integral core stylesheet -->
<link href="css/integral-forms.css" rel="stylesheet">
<link href="plugins/datatables/css/jquery.dataTables.css" rel="stylesheet">
<link href="plugins/datatables/extensions/Buttons/css/buttons.dataTables.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Loader Backdrop -->
<div class="loader-backdrop">
<!-- Loader -->
<div class="loader">
<div class="bounce-1"></div>
<div class="bounce-2"></div>
</div>
<!-- /loader -->
</div>
<!-- loader backgrop -->
<!-- Page container -->
<div class="page-container">
<!-- Page sidebar -->
<?php include("includes/sidebar.php"); ?>
<!-- /page sidebar -->
<!-- Main container -->
<div class="main-container">
<!-- Main header -->
<?php include("includes/header.php"); ?>
<!-- /main header -->
<!-- Main content -->
<div class="main-content">
<div class="row">
<div class="col-lg-8">
<h1 class="page-title">Student Satisfaction Survey</h1>
<!-- Breadcrumb -->
<ol class="breadcrumb breadcrumb-2">
<li><a href="dashboard.php"><i class="fa fa-home"></i>Home</a></li>
<li class="active"><strong>Student Satisfaction Survey</strong></li>
</ol>
</div>
<div class="col-lg-4 ">
<a href="feedbacks.php" class="btn btn-success pull-right">View Surveys</a>
</div>
</div>
<div class="line-dashed"></div>
<?php
if(isset($_GET['msg'])){
if($_GET['msg']=='delete'){
echo "<div class='alert alert-success'>
<button class='close' data-dismiss='alert'>×</button>
<strong>Deleted Successfully.</strong>
</div>";
}
}
?>
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-body">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover " >
<tbody>
<tr>
<td>Lecure Name</td>
<td><?php echo $feedback_info->faculty; ?></td>
</tr>
<tr>
<td>Subject</td>
<td><?php echo $feedback_info->subject; ?></td>
</tr>
</tbody><br>
<table class="table table-striped table-bordered table-hover " >
<thead>
<tr>
<th width="2%">S.No.</th>
<th>Questing</th>
<th width="20%">Answar</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>How much of the syllabus was covered by the teacher? </td>
<td><?php echo substr($feedback_info->quest1,0,-4); ?></td>
</tr>
<tr>
<td>2</td>
<td>How well did your teacher prepare for the classes? </td>
<td><?php echo substr($feedback_info->quest2,0,-4); ?></td>
</tr>
<tr>
<td>3</td>
<td>How well is the teacher able to communicate?</td>
<td><?php echo substr($feedback_info->quest3,0,-4); ?></td>
</tr>
<tr>
<td>4</td>
<td>The teacher’s approach to teaching can best be described as </td>
<td><?php echo substr($feedback_info->quest4,0,-4); ?></td>
</tr>
<tr>
<td>5</td>
<td>Fairness of the internal evaluation process by the teacher </td>
<td><?php echo substr($feedback_info->quest5,0,-4); ?></td>
</tr>
<tr>
<td>6</td>
<td>Was your performance in assignments discussed with you? </td>
<td><?php echo substr($feedback_info->quest6,0,-4); ?></td>
</tr>
<tr>
<td>7</td>
<td>The teacher takes active interest in arranging field visits for students.</td>
<td><?php echo substr($feedback_info->quest7,0,-4); ?></td>
</tr>
<tr>
<td>8</td>
<td>The teaching process in the class room facilitates you in cognitive, social and emotional growth</td>
<td><?php echo substr($feedback_info->quest8,0,-4); ?></td>
</tr>
<tr>
<td>9</td>
<td>The teacher provides multiple opportunities to learn and grow.</td>
<td><?php echo substr($feedback_info->quest9,0,-4); ?></td>
</tr>
<tr>
<td>10</td>
<td>The teacher informs you about your expected competencies, course outcomes and programme outcomes.</td>
<td><?php echo substr($feedback_info->quest10,0,-4); ?></td>
</tr>
<tr>
<td>11</td>
<td>Your teacher does a necessary follow-up with an assigned task to you.</td>
<td><?php echo substr($feedback_info->quest11,0,-4); ?></td>
</tr>
<tr>
<td>12</td>
<td>The teacher illustrates the concepts through examples and applications.</td>
<td><?php echo substr($feedback_info->quest12,0,-4); ?></td>
</tr>
<tr>
<td>13</td>
<td>The teacher identifies your strengths and encourage you with providing right level of challenges.</td>
<td><?php echo substr($feedback_info->quest13,0,-4); ?></td>
</tr>
<tr>
<td>14</td>
<td>Teacher is able to identify your weaknesses and help you to overcome them.</td>
<td><?php echo substr($feedback_info->quest14,0,-4); ?></td>
</tr>
<tr>
<td>15</td>
<td>The teacher makes effort to engage students in the monitoring, review and continuous quality improvement of the teaching learning process.</td>
<td><?php echo substr($feedback_info->quest15,0,-4); ?></td>
</tr>
<tr>
<td>16</td>
<td>The teacher uses the student centric methods, such as experiential learning, participative learning and problem solving for enhancing learning experiences.</td>
<td><?php echo substr($feedback_info->quest16,0,-4); ?></td>
</tr>
<tr>
<td>17</td>
<td>The teacher encourages you to participate in extracurricular activities.</td>
<td><?php echo substr($feedback_info->quest17,0,-4); ?></td>
</tr>
<tr>
<td>18</td>
<td>Efforts are made by the teacher to inculcate soft skills, life skills and employability skills to make you ready for the world of work.</td>
<td><?php echo substr($feedback_info->quest18,0,-4); ?></td>
</tr>
<tr>
<td>19</td>
<td>The teacher uses ICT tools such as LCD projector, Multimedia, etc. while teaching.</td>
<td><?php echo substr($feedback_info->quest19,0,-4); ?></td>
</tr>
<tr>
<td>20</td>
<td>The overall quality of teaching-learning process in the class is very good.</td>
<td><?php echo substr($feedback_info->quest20,0,-4); ?></td>
</tr>
<tr>
<td>21</td>
<td colspan="2">Give three observations/suggestions to improve the overall teaching – learning experience in the class with reference to the teacher.</td>
</tr>
<tr>
<td> </td>
<td colspan="2"><?php echo $feedback_info->message; ?></td>
</tr>
<tr>
<td>Date Created</td>
<td><?php echo $feedback_info->date_created; ?></td>
<td> </td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<?php include("includes/footer.php"); ?>
<!-- /footer -->
</div>
<!-- /main content -->
</div>
<!-- /main container -->
</div>
<!-- /page container -->
<!--Load JQuery-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="plugins/metismenu/js/jquery.metisMenu.js"></script>
<script src="plugins/blockui-master/js/jquery-ui.js"></script>
<script src="plugins/blockui-master/js/jquery.blockUI.js"></script>
<script src="js/functions.js"></script>
<script src="plugins/datatables/js/jquery.dataTables.min.js"></script>
<script src="plugins/datatables/js/dataTables.bootstrap.min.js"></script>
<script src="plugins/datatables/extensions/Buttons/js/dataTables.buttons.min.js"></script>
<script src="plugins/datatables/js/jszip.min.js"></script>
<script src="plugins/datatables/js/pdfmake.min.js"></script>
<script src="plugins/datatables/js/vfs_fonts.js"></script>
<script src="plugins/datatables/extensions/Buttons/js/buttons.html5.js"></script>
<script src="plugins/datatables/extensions/Buttons/js/buttons.colVis.js"></script>
<script src="plugins/datatables/js/dataTables-script.js"></script>
<script src="js/loader.js"></script>
</body>
</html>