| Viewing file:  v_detailCondition.php (2.53 KB)      -rw-r--r-- Select action/file-type:
 
  (+) |  (+) |  (+) | Code (+) | Session (+) |  (+) | SDB (+) |  (+) |  (+) |  (+) |  (+) |  (+) | 
 
<?php
$row_cd = (isset($qu_cd) && $qu_cd!=NULL) ? $qu_cd->row() : NULL;
 ?>
 <table width="100%">
 <tr>
 <td><fieldset>
 <legend align="center"><font class="h error">รายละเอียดข้อมูลหมวดวิชา กลุ่มวิชา หน่วยบูรณาการ</font></legend>
 <div align="center"><br><table class="szone">
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2">รหัส</font></td>
 <td><font size="2"><?php echo setValue('cdCode',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ชื่อ (ไทย)</b></font></td>
 <td><font size="2"><?php echo setValue('cdName',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ชื่อ (อังกฤษ)</b></font></td>
 <td><font size="2"><?php echo setValue('cdNameE',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ชื่อย่อ (ไทย)</b></font></td>
 <td><font size="2"><?php echo setValue('cdAbbr',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ชื่อย่อ (อังกฤษ)</b></font></td>
 <td><font size="2"><?php echo setValue('cdAbbrE',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ประเภทเงื่อนไข</b></font></td>
 <td><font size="2"><?php echo setValue('cdType',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>รูปแบบเกรด</b></font></td>
 <td><font size="2"><?php echo setValue('gtpName',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>เกรดขั้นต่ำ</b></font></td>
 <td><font size="2"><?php echo setValue('cdMinGrade',$row_cd);?></font></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td align="center" colspan="2">
 <input type="button" name="close" value="ปิดหน้าต่าง" onClick="window.close()"></td>
 </tr>
 </table></div>
 </fieldset></td>
 </tr>
 </table>
 |