| Viewing file:  ShowPersonalDetail.php (17.66 KB)      -rw-r--r-- Select action/file-type:
 
  (+) |  (+) |  (+) | Code (+) | Session (+) |  (+) | SDB (+) |  (+) |  (+) |  (+) |  (+) |  (+) | 
 
<?php
 session_start();
 
 /**  Define Validate Access  */
 define( '_VALID_ACCESS', 1 );
 
 /**  Check Session User Login  */
 if( !session_is_registered("valid_user") && !session_is_registered("Priority") ) {
 echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\" />";
 echo "<p style=padding-top:115px><p align=center><br /><font color=red><strong>กรุณาทำการ Login ก่อน</strong></font></p></p>";
 echo "<meta http-equiv=\"refresh\" content=\"1; URL=../login.php\" />";
 exit();
 }
 else {
 /**  Configuration  */
 require_once( "../configuration.php" );
 require_once( $_Config_absolute_path . "/includes/framework.php" );
 require_once( "../include/Function.php" );
 
 /**  Chart  */
 include ("../includes/charts.php");
 
 /**  Create Database Object  */
 $dbObj = new DBConn;
 
 
 /**  Config Table for This Page  */
 $myTable = "personal_tb";
 $myTable2 = "degree_his_tb";
 $myTableFK = "Teacher_code";
 
 
 $query = " SELECT *  FROM $myTable  WHERE Teacher_code='$Teacher_code' ";
 $result = $dbObj->execQuery($query);
 $rs = $dbObj->fetchArray($result);
 
 //$Img1 = str_replace( "../", "", $rs['Img1'] );
 
 
 } # else
 ?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
 <link href="../css/default.css" rel="stylesheet" type="text/css" />
 <script language="javascript" src="../js/utilities.js"></script>
 <title>ข้อมูลการพัฒนาบุคลากร - รายละเอียดบุคลากร</title>
 </head>
 
 <body topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0">
 <?php
 include("../templates/incHeader.php");
 ?>
 <table width="1003" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td width="203" align="left" valign="top" style="padding:10px 0px 0px 5px"><?php include("./_incMainMenu.php");?></td>
 <td width="800" height="440" align="center" valign="top" style="padding:10px 0px 5px 10px"><fieldset>
 <table width="780" border="0" cellspacing="0" cellpadding="0">
 <form id="myForm" name="myForm" method="post" action="<?=$PHP_SELF;?>?page=<?=$page;?>">
 <tr>
 <td height="5"></td>
 </tr>
 <tr>
 <td height="30" background="../images/background/bg-head-topic-w780.gif" class="PADDING-LEFT-10"><strong><a href="index.php">หน้าหลัก</a></strong> <strong>» <a href="Menu_Personal.php">ข้อมูลบุคลากร</a> » <span class="NOTE">รายละเอียดบุคลากร</span></strong></td>
 </tr>
 <tr>
 <td> </td>
 </tr>
 <tr>
 <td height="345" align="center" valign="top"><table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
 <tr>
 <td width="78%"><table width="100%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#E4E4E4">
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" bordercolor="#FFFFFF" bgcolor="#FFFFFF">สังกัด ภาค/ฝ่าย</td>
 <td bgcolor="#FFFFFF">:</td>
 <td bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php
 $sql = " SELECT *  FROM  faculty_tb  WHERE Faculty_code='$rs[Faculty_code]' ";
 $result1 = $dbObj->execQuery($sql);
 $rs1 = $dbObj->fetchArray($result1);
 $dbObj->freeresult($result1);
 echo $rs1['Faculty_name'];
 ?></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ชื่อ-นามสกุล</td>
 <td width="10" bgcolor="#FFFFFF">:</td>
 <td width="445" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?=$rs['First_name'];?><?=$rs['Teacher_name'];?>  <?=$rs['Teacher_lastname'];?></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td width="156" height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ประเภทอาจารย์</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php
 $Teacher_type  = $rs['Teacher_type'];
 $sql = " SELECT *  FROM teacher_type_tb  WHERE  Ttype_code='$Teacher_type' ";
 $result2 = $dbObj->execQuery($sql);
 $rs2 = $dbObj->fetchArray($result2);
 $dbObj->freeresult($result2);
 echo $rs2['Ttype_name'];
 ?></td>
 </tr>
 <tr bordercolor="#FFFFFF">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ตำแหน่งการบริหาร</td>
 <td width="10" nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php echo $rs['Manage_pos']; ?></td>
 </tr>
 <tr bordercolor="#FFFFFF">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ประเภทบุคลากร</td>
 <td width="10" nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php
 $Person_type  = $rs['Person_type'];
 $sql = " SELECT *  FROM person_type_tb  WHERE  Ptype_code='$Person_type' ";
 $result3 = $dbObj->execQuery($sql);
 $rs3 = $dbObj->fetchArray($result3);
 $dbObj->freeresult($result3);
 echo $rs3['Ptype_name'];
 ?></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ความเชี่ยวชาญ</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"> </td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ความสามารถพิเศษ</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php echo htmlspecialchars_decode( nl2br( $rs['Skill'] ) ); ?></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">E-mail</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><font color="#003366" size="2" face="Tahoma"><?php echo $rs["Email"] ;?></font></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">วุฒิการศึกษาสูงสุด</td>
 <td width="10" nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php
 $Degree_code  = $rs['Degree_code'];
 $sql = " SELECT *  FROM degree_tb  WHERE  Degree_code='$Degree_code' ";
 $result4 = $dbObj->execQuery($sql);
 $rs4 = $dbObj->fetchArray($result4);
 $dbObj->freeresult($result4);
 echo $rs4['Degree_name'];
 ?></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" colspan="3" align="right" valign="top" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><table width="100%" border="0" align="left" cellpadding="1" cellspacing="1" bgcolor="#FFFFFF" style="background-color:#eeeeee; border:0px solid gray">
 <?php
 $query = " SELECT *  FROM  $myTable2   WHERE   Teacher_code='$rs[Teacher_code]'  ";
 $result1 = $dbObj->execQuery($query);
 $numrows = $dbObj->_numrows;
 ?>
 <?php
 $no = 1+($display-1)*$limit;
 while( $rss = $dbObj->fetchArray($result1) ) {
 $bgColor = ( $bgColor == "#FFFFFF" ) ? "#F9FBFB" : "#FFFFFF";
 ?>
 <tr bgcolor="<?=$bgColor;?>">
 <td width="16%" height="20" align="left"><img src="../images/icons/linesub.gif" width="16" height="16" border="0" align="absmiddle" />                          <?php
 $Degree_code =  $rss['Degree_code'] ;
 $sql11 = " Select Degree_name  From   degree_tb   Where Degree_code='$Degree_code' ";
 $result11 = mysql_query($sql11);
 $rs11 = mysql_fetch_array($result11);
 echo"$rs11[Degree_name] ";
 ?></td>
 <td width="70%" align="left" class="PADDING-LEFT-5"><? echo $rss['Degree_His'] ; ?> สาขา</font></a><font color="#000000" size="2" face="Tahoma"><? echo  $rss['Degree_Major']?></font></td>
 <td width="14%" align="left" class="PADDING-LEFT-5"><font color="#000000" size="2" face="Tahoma"><font color="#000000" size="2" face="Tahoma"><? echo  $rss[Degree_Year]?></font></font></td>
 </tr>
 <?php
 //$no++;
 } # while
 ?>
 </table></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" valign="top" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
 <td nowrap="nowrap" bgcolor="#FFFFFF"> </td>
 <td valign="top" nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"> </td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" valign="top" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ปริญญาตรี</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td valign="top" nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php echo htmlspecialchars_decode( nl2br( $rs['Degree_His1'] ) ); ?> <?php echo $rs['Degree_His1_End_Year']; ?></td>
 </tr>
 <?php if( $rs['Degree_His2'] != "" ) { ?>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" valign="top" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ปริญญาโท</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td valign="top" nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php echo htmlspecialchars_decode( nl2br( $rs['Degree_His2'] ) ); ?> <?php echo $rs['Degree_His2_End_Year']; ?></td>
 </tr>
 <?php
 } #if
 if( $rs['Degree_His3'] != "" ) {
 ?>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ปริญญาเอก</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF">:</td>
 <td valign="top" nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10"><?php echo htmlspecialchars_decode( nl2br( $rs['Degree_His3'] ) ); ?> <?php echo $rs['Degree_His3_End_Year']; ?></td>
 </tr>
 <?php } #if ?>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" valign="top" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF" class="PADDING-TOP-5">ภาระงาน</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF"> </td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10 PADDING-TOP-5"><table width="100%" border="0" cellspacing="1" cellpadding="1">
 <tr>
 <td width="65%" align="left">• <?php
 $sql = " SELECT *  FROM training_tb  WHERE  Teacher_code='$rs[Teacher_code]' ";
 $result6 = $dbObj->execQuery($sql);
 $numTraining = $dbObj->_numrows;
 $dbObj->freeresult($result6);
 if( $numTraining > 0 ) {
 ?><a href="../showTrainingList.php?Teacher_code=<?php echo $rs['Teacher_code']; ?>&Degree_code=<?=$Degree_code;?>">ประวัติการพัฒนาตนเอง</a><?php } else { ?>ประวัติการพัฒนาตนเอง<?php } ?></td>
 <td width="35%" align="center"><?php echo $numTraining; ?> ระเบียน</td>
 </tr>
 <tr>
 <td align="left">• <?php
 $sql = " SELECT *  FROM research_tb  WHERE  Teacher_code='$rs[Teacher_code]' ";
 $result7 = $dbObj->execQuery($sql);
 $numResearch = $dbObj->_numrows;
 $dbObj->freeresult($result7);
 if( $numResearch > 0 ) {
 ?><a href="ResearchList.php?Teacher_code=<?php echo $rs['Teacher_code']; ?>">งานวิจัย</a><?php } else { ?>งานวิจัย<?php } ?></td>
 <td align="center"><?php echo $numResearch; ?> ระเบียน</td>
 </tr>
 <tr>
 <td align="left">• <?php
 $sql = " SELECT *  FROM edu_product_tb  WHERE  Teacher_code='$rs[Teacher_code]' ";
 $result8 = $dbObj->execQuery($sql);
 $numEduProduct = $dbObj->_numrows;
 $dbObj->freeresult($result8);
 if( $numEduProduct > 0 ) {
 ?><a href="ProductList.php?Teacher_code=<?php echo $rs['Teacher_code']; ?>">ผลงานวิชาการ</a><?php } else { ?>ผลงานวิชาการ<?php } ?></td>
 <td align="center"><?php echo $numEduProduct; ?> ระเบียน</td>
 </tr>
 <tr>
 <td align="left">• <?php
 $sql = " SELECT *  FROM committee_tb  WHERE  Teacher_code='$rs[Teacher_code]' ";
 $result9 = $dbObj->execQuery($sql);
 $numCommittee = $dbObj->_numrows;
 $dbObj->freeresult($result9);
 if( $numCommittee > 0 ) {
 ?><a href="../CommitByYearDetail.php?Teacher_code=<?php echo $rs['Teacher_code']; ?>">งานบริการวิชาการ</a><?php } else { ?>งานบริการวิชาการ<?php } ?></td>
 <td align="center"><?php echo $numCommittee; ?> ระเบียน</td>
 </tr>
 <tr>
 <td align="left">• <a href="http://reg.scphc.ac.th/showTimeTableT.php?programId=&studentYear=&acadYear=2552&coId=&ttClId=&ttRmId=&ttEpMepId=&ttEpSepId=&ttOfId=&ttWdAcYWeekNo=&view=t">ตารางสอนนักศึกษา</a></td>
 <td align="center"> </td>
 </tr>
 <tr>
 <td align="left">• <?php
 $sql = " SELECT *  FROM tech_plan_tb  WHERE  Teacher_code='$rs[Teacher_code]' ";
 $result10 = $dbObj->execQuery($sql);
 $numTechPlan = $dbObj->_numrows;
 $dbObj->freeresult($result10);
 if( $numTechPlan > 0 ) {
 ?> <a href="../PlanList.php?Teacher_code=<?php echo $rs['Teacher_code']; ?>">แผนการสอนรายวิชา</a><?php } else { ?>แผนการสอนรายวิชา<?php } ?></td>
 <td align="center"><?php echo $numTechPlan; ?> ระเบียน</td>
 </tr>
 <tr>
 <td align="left">• <a href="../StdAdviceList.php?officerId1=<?=$rs['officerId1'];?>">นักศึกษาในความรับผิดชอบ</a></td>
 <td align="center"> </td>
 </tr>
 </table></td>
 </tr>
 <tr bordercolor="#E7FAFE">
 <td height="20" align="right" nowrap="nowrap" bordercolor="#FFFFFF" bgcolor="#FFFFFF" class="PADDING-TOP-5">สังกัดหน่วยงาน</td>
 <td nowrap="nowrap" bgcolor="#FFFFFF"> </td>
 <td nowrap="nowrap" bgcolor="#FFFFFF" class="TEXT-DARK-BLUE10 PADDING-TOP-5"><?php
 $sql = " SELECT *  FROM faculty_tb  WHERE  Faculty_code='$rs[Faculty_code]' ";
 $result5 = $dbObj->execQuery($sql);
 $rs5 = $dbObj->fetchArray($result5);
 $dbObj->freeresult($result5);
 echo $rs5['Faculty_name'];
 ?></td>
 </tr>
 </table>
 <table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td> </td>
 </tr>
 <tr>
 <td align="center"><input type="button" name="button" id="button" value="« ย้อนกลับ" class="CURSOR-HAND" onclick="window.history.back();" /></td>
 </tr>
 </table></td>
 <td width="22%" valign="top" align="center"><table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
 <tr>
 <td><img src="../personal_pic/<?php echo $rs['Img1']; ?>" width="150" height="170" /></td>
 </tr>
 </table></td>
 </tr>
 </table></td>
 </tr>
 <tr>
 <td> </td>
 </tr></form>
 </table>
 </fieldset></td>
 </tr>
 </table>
 <?php include("../templates/incFooter.php"); ?>
 </body>
 </html>
 <?php
 /**  Free Resource */
 $dbObj->freeresult($result);
 
 /**  Close the Database  */
 $dbObj->disconn();
 
 /**  Unset Class  */
 unset($dbObj);
 ?>
 |