Current File : /home/inlingua/www/noida/icentex/admin_cert/level_2.view.php
<?php
// Copyright, Panalink Infotech Limited. Created on: 09-07-2010

// Include header
include "header_cert.php";

echo'<h3>&nbsp;&nbsp;&nbsp;EOC Report </h3>';

$queryCourse="select courseid,startdate,enddate,language,level from ingl_course where courseid='".$dbObject->getDbField('courseId')."'";
        $resultCourse=mysqli_query($conn,$queryCourse) or die("Error:There is some ploblem");
        $numCourse=mysqli_fetch_array($resultCourse);
?>
<div id="contentnew">
<table border='1'  width="100%">
<tr valign='top'><td width='40%'>Language</td><td width='60%'><?php echo $dbObject->getDbField('language');?>&nbsp;</td></tr>
<tr valign='top'><td>Course ID</td><td><?php echo $dbObject->getDbField('courseId');?>&nbsp;</td></tr>
<tr valign='top'><td>Level</td><td><?php echo $numCourse[level];?>&nbsp;</td></tr>
<tr valign='top'><td>Start Date</td><td><?php echo $dbObject->getDbField('startDate');?>&nbsp;</td></tr>
<tr valign='top'><td>End Date</td><td><?php echo $dbObject->getDbField('endDate');?>&nbsp;</td></tr>
<tr valign='top'><td>Student Name</td><td><?php echo $dbObject->getDbField('studentName');?>&nbsp;</td></tr>


<tr valign='top'><td>Clarity and Quality of Pronunciation</td><td><?php echo $dbObject->getDbField('clarityandquality');?>&nbsp;</td></tr>
<tr valign='top'><td>Fluency</td><td><?php echo $dbObject->getDbField('fluency');?>&nbsp;</td></tr>
<tr valign='top'><td>Accuracy of English Grammar and Structures</td><td><?php echo $dbObject->getDbField('accuracyenglish');?>&nbsp;</td></tr>
<tr valign='top'><td>Knowledge and Use of Vocabulary</td><td><?php echo $dbObject->getDbField('knowledge');?>&nbsp;</td></tr>
<tr valign='top'><td>Ability to Understand and React to Spoken English</td><td><?php echo $dbObject->getDbField('abilityunder');?>&nbsp;</td></tr>
<tr valign='top'><td>Listening</td><td><?php echo $dbObject->getDbField('listening');?>&nbsp;</td></tr>
<tr valign='top'><td>General Comments and Advice for Future Study</td><td><?php echo $dbObject->getDbField('general_comment');?>&nbsp;</td></tr>
<tr valign='top'><td>Overall Grade</td><td><?php echo $dbObject->getDbField('overall_grade');?>&nbsp;</td></tr>
<tr valign='top'><td>Eligibility for the next level</td><td><?php  if($dbObject->getDbField('eligibility') =='Other') echo $dbObject->getDbField('othereligibility'); else echo $dbObject->getDbField('eligibility')  ;?>&nbsp;</td></tr>

</table>
</div>


<?php
// Include footer
include "footer_cert.php";
?>