Viewing file: v_detailCurriculum.php (4.85 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
if($qu_cur->num_rows() > 0) {
$row = $qu_cur->row();
$curImproveY = $row->curImproveY;
$curName = $row->curName;
$curNameE = $row->curNameE;
$curAbbr = $row->curAbbr;
$curAbbrE = $row->curAbbrE;
$curDescription = $row->curDescription;
$curDescriptionE = $row->curDescriptionE;
$curMinCredit = $row->curMinCredit;
$curMinGPAX = $row->curMinGPAX;
$curNumStudyY = $row->curNumStudyY;
$curMaxStudyY = $row->curMaxStudyY;
$curNumTmPerY = $row->curNumTmPerY;
$curStatus = $row->curStatus;
}
$row_edg = isset($qu_edg) ? $qu_edg->row() : NULL;
$row_lv = isset($qu_lv) ? $qu_lv->row() : NULL;
$row_cc = isset($qu_cc) ? $qu_cc->row() : NULL;
?>
<table width="100%">
<tr>
<td><fieldset>
<legend align="center"><span class="h error">รายละเอียดข้อมูลหลักสูตร</b></span></legend>
<div align="center"><br><table class="szone">
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ปีที่ปรับปรุงหลักสูตร</td>
<td class="indent"><?php echo $curImproveY;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">วุฒิการศึกษา</td>
<td class="indent"><?php echo explodeSquare(getval('edgName', $row_edg));?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ระดับการศึกษา</td>
<td class="indent"><?php echo explodeSquare(getval('levelName', $row_lv));?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ชื่อหลักสูตร (ไทย)</td>
<td class="indent"><?php echo explodeSquare($curName);?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ชื่อหลักสูตร (อังกฤษ)</td>
<td class="indent"><?php echo explodeSquare($curNameE);?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ชื่อย่อหลักสูตร (ไทย)</td>
<td class="indent"><?php echo $curAbbr;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ชื่อย่อหลักสูตร (อังกฤษ)</td>
<td class="indent"><?php echo $curAbbrE;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">หน่วยกิตรวมขั้นต่ำ</td>
<td class="indent"><?php echo $curMinCredit;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">คะแนนเฉลี่ยสะสมตลอดหลักสูตร</td>
<td class="indent"><?php echo number_format($curMinGPAX, 2);?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">สาระสำคัญของหลักสูตร (ไทย)</td>
<td class="indent"><?php echo $curDescription;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">สาระสำคัญของหลักสูตร (อังกฤษ)</td>
<td class="indent"><?php echo $curDescriptionE;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">จำนวนปีสูงสุดที่เรียนได้</td>
<td class="indent"><?php echo $curMaxStudyY;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">จำนวนปีที่เรียนตามปกติ</td>
<td class="indent"><?php echo $curNumStudyY;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">จำนวนภาคการศึกษาต่อปี</td>
<td class="indent"><?php echo $curNumTmPerY;?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">ประเภทบัณฑิตผู้สำเร็จการศึกษา</td>
<td class="indent"><?php echo explodeSquare(getval('ccName', $row_cc));?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone2">สถานะหลักสูตร</td>
<td class="indent"><?php echo $curStatus;?></td>
</tr>
</table></div>
</fieldset><br></td>
</tr>
<tr><td><table class="mark">
<tr>
<td class="coltd_mark"><span class="error"><b>หมายเหตุ : </b></span></td>
<td><span class="error">Y = ใช้อยู่ , N = เลิกใช้แล้ว</span></td>
</tr>
</table></td></tr>
<tr>
<td align="center"><input type="button" onclick="window.close()" value="ปิดหน้าต่าง" name="close"></td>
</tr>
</table>
|