Current File : /home/inlingua/public_html/faridabad/icentex/evaluation/html/course_questionaire_list.php |
<?php include('include/header.php') ;?>
<!-- Main content -->
<div class="container page1">
<section class="content">
<!-- Info boxes -->
<div class="row">
<div class="col-xs-12">
<div class="box box-danger">
<div class="box-header">
<h3 class="box-title">Course Questionaire List</h3>
</div>
<!-- /.box-header -->
<div class="box-body table-responsive no-padding">
<form action="<?php echo make_url('course_questionaire_list'); ?>" method="POST" class="contact-form2">
<input type="text" id="course_id" name="course_id" value="" size="20" placeholder="Course Id" aria-invalid="false" aria-required="true" class="form-row col-md-3">
<input type="submit" class="form-row col-md-3" name="submit" value="Find" size="20" class="form-row form-row-control">
<a class="button pull-right reg" href="reports/eoclist.xlsx">Download Assessment List </a></h3>
</form>
<table class="table table-hover">
<?php
if($count_project>0){ ?>
<tbody><tr>
<th>ID</th>
<th>Course Id</th>
<th>Name Of Course </th>
<th>Start Date </th>
<th>End Date </th>
<th>Quality Topics</th>
<th>Course Material</th>
<th>Usefulness</th>
<th>Interest in course</th>
<th>Atmosphere </th>
<th>Effectiveness</th>
<th>Handle Queries</th>
<th>Service Offered</th>
<th>Classroom Comfort</th>
<th>Overall Atmosphere</th>
<th>Join Next Level</th>
<th>Strengths</th>
<th>Improvement</th>
<th>Recommend</th>
<th>Comments</th>
</tr>
<?php $i=1;
while($QueryObj1=$QueryObj->GetObjectFromRecord()):
$startdate = $QueryObj1->start_date;
$sdate = date("d-m-Y", strtotime($startdate));
$edate = $QueryObj1->end_date;
$edate = date("d-m-Y", strtotime($edate));
?>
<tr>
<td><?php echo $i; ?></td>
<td><?=$QueryObj1->course_id; ?></td>
<td><?=$QueryObj1->name_of_course; ?> </td>
<td><?=$sdate; ?></td>
<td><?=$edate; ?></td>
<td><?=$QueryObj1->quality_topics; ?></td>
<td><?=$QueryObj1->course_material; ?></td>
<td><?=$QueryObj1->usefulness; ?></td>
<td><?=$QueryObj1->int_in_course; ?></td>
<td><?=$QueryObj1->atmosphere; ?></td>
<td><?=$QueryObj1->effectiveness; ?></td>
<td><?=$QueryObj1->handle_queries; ?></td>
<td><?=$QueryObj1->service_offered; ?></td>
<td><?=$QueryObj1->classroom_comfort; ?></td>
<td><?=$QueryObj1->Overall_atmosphere; ?></td>
<td><?=$QueryObj1->join_next_level; ?></td>
<td><?=$QueryObj1->strengths; ?></td>
<td><?=$QueryObj1->improvement; ?></td>
<td><?=$QueryObj1->recommend; ?></td>
<td><?=$QueryObj1->comments; ?></td>
</tr>
<?php $i++; endwhile; ?>
</tbody>
<?php } else { ?>
<tr>
<td class="table_cell" >There area no data found in our database.</td>
</tr>
<?php } ?>
</table>
</div>
<? /* PageControl($QueryObj->PageNo, $QueryObj->TotalPages, $QueryObj->TotalRecords, DIR_WS_SITE, 'page=course_questionaire_list', 4); */ ?>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
</div><!-- /.row -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet"href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script>
$(document).ready(function () {
var objDate = new Date();
var Presentyear = objDate.getFullYear();
$("#start_date").datepicker({
//yearRange: '1900:' + Presentyear,
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd'
//minDate: '0'
});
$("#end_date").datepicker({
//yearRange: '1900:' + Presentyear,
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd'
//minDate: '0'
});
});
</script>
<!-- TABLE: LATEST ORDERS -->
<!-- /.box -->
</div><!-- /.col -->
<!-- /.row -->
</section><!-- /.content -->
</div>
<!-- End Home Page Slider -->
<?php include('include/eoc.inc_reports.php');
include ("include/footer.php");
?>