Viewing file: detailHoldTeach.php (3.87 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once "../../class/clsDB.php";
include_once "../../class/clsConnection.php";
include_once "../global.php";
include_once "../class/clsReg_Program.php";
include_once "../class/clsReg_SysSemesterDes.php";
include_once "../class/clsAssessForm.php";
include_once "../class/clsDefineAssessment.php";
include_once "../class/clsDoAssessmentTeach.php";
$oCR = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB_REG'], $GLOBALS['USER_REG'], $GLOBALS['PASSWORD_REG']);
$oCA = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB_EASS'], $GLOBALS['USER_EASS'], $GLOBALS['PASSWORD_EASS']);
$oAF = new AssessForm($oCA);
$oDA = new DefineAssessment($oCA);
$oDoTe = new DoAssessmentTeach($oCA);
$oDA->SearchByKey($defineid,$acadYear,$semester,$noAss);
$oDA->GetRecord();
$oSse = new SysSemesterDes($oCR);
$oSse->SearchByKey($oDA->semester);
$oSse->GetRecord();
$oAF->SearchByKey($oDA->assid);
$oAF->GetRecord();
$DoAssTeach = $oDoTe->CountDoTeachidByDefineid($oDA->defineid);
?>
<html>
<head>
<title>แสดงรายละเอียดของแบบประเมินโดยอาจารย์ประเมิน</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<link href="../source/style.css" rel="stylesheet" type="text/css">
</head><br>
<table width="97%" height="150" border="0" align="center" cellpadding="0" cellspacing="2" >
<tr align="center">
<td height="22" colspan="2"><font color="<?php echo $GLOBALS["COLOR_FONT_3"];?>"><img src="../picture/add.gif" width="18" height="19"><u>รายละเอียดกำหนดแบบประเมินและช่วงเวลาอาจารย์ประเมิน</u></font><br></td>
</tr>
<tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_4'];?>">
<td height="22"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>" ><b> ลำดับที่</b></font></td>
<td width="71%"><? echo $oDA->noAss; ?></td>
</tr>
<tr>
<td width="29%" height="22"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><b> ปีการศึกษา</b></font></td>
<td><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><?php echo $oSse->semesterName;?>/<? echo $oDA->acadYear; ?></font></td>
</tr>
<tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_4'];?>">
<td height="22"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><b> แบบประเมินที่เลือกใช้</b></font></td>
<td height="22"><font size="2" color="<?php echo $GLOBALS['COLOR_FONT_4'];?>">
<? if($oAF->maintopic == ""){ echo $oAF->nameAss." <img src = \"../picture/warn.png\" border = \"0\">"; }else{ echo $oAF->maintopic; } ?>
</font></td>
</tr>
<tr>
<td height="24"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><b> ช่วงเวลาประเมิน</b></font></td>
<td height="24">
<?php echo abbreDate2($oDA->startDate,'/');?>
<font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><b> ถึง</b></font>
<?php echo abbreDate2($oDA->endDate,'/');?>
<font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"> </font></td>
</tr>
<tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_4'];?>">
<td height="24"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><b> วันที่ปิดการประเมิน</b></font></td>
<td><?php echo abbreDate2($oDA->closeDate,'/');?></td>
</tr>
<tr>
<td height="24"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><b> สถานะการประเมิน</b></font></td>
<td height="24"><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>">
<? if($DoAssTeach == 0){ ?>
<img src = "../picture/no.gif" width="13" height="13"> ยังไม่มีผู้เข้ามาประเมิน
<? } else if($DoAssTeach > 0){ ?>
<img src = "../picture/yes.gif" width="13" height="13">มีผู้เข้ามาประเมินแล้ว
<? } ?>
</font></td>
</tr>
</table>
<br>
<table width="97%" border="0" align="center">
<tr>
<td align="center"><a href="#" onClick="window.close()"><font size="2" face="Microsoft Sans Serif">[ปิดหน้าต่าง]</font></a></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body>
</html>
|