Viewing file:      v_personRCTable2.php (3.23 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<html>
 <head>
 <title>ตารางอาจารย์ผู้สอน</title>
 <script language="JavaScript">
     function ReturnValue(prsId, person)
     {
         window.opener.document.myform1.elements["prsNameRC2"].value = person;
         window.opener.document.myform1.elements["prsIdRC2"].value = prsId;
         //alert(window.opener.document.myform1.elements["prsIdRC"].value);
         window.close();
     }
 </script>
 </head>
 <body bgcolor="#FFFFFF">
 <table width="100%" border="0" cellspacing="1" cellpadding="1"><?php echo form_open($this->config->item("rg_folder")."popup/pr_searchPrsResponsibility_2", array("name" => "myform", "id" => "myform"));?>
     <tr> 
         <td width="30%" align="right"><font face="MS Sans Serif" size="2"><b>รหัสอาจารย์ :</b></td>
         <td colspan="2"><input type="text" size="5" name="prsCode" id="prsCode"><br></td>
     </tr>
     <tr>
         <td width="30%" align="right"><font face="MS Sans Serif" size="2"><b>ชื่อ-สกุลอาจารย์ :</b></font></td>
         <td width="60%"><input type="text" size="10" name="prsName" id="prsName">
         <input type="text" size="10" name="prsSurname" id="prsSurname"></td>
         <td width="10%"><input type="submit" name="search" value="ค้นหา"></td>
     </tr><?php echo form_close();?>
     <tr>
         <td colspan="3"><br /></td>
     </tr>
     <tr>
         <table width="100%" border="0" cellspacing="1" cellpadding="1">
             <tr bgcolor="#0066CC"> 
                 <td align="center"><font face="MS Sans Serif" size="2" color="#FFFFFF"><b>ลำดับที่</b></font></td>
                 <td align="center"><font face="MS Sans Serif" size="2" color="#FFFFFF"><b>รหัสอาจารย์</b></font></td>
                 <td align="center"><font face="MS Sans Serif" size="2" color="#FFFFFF"><b>ชื่ออาจารย์ผู้สอน</b></font></td>
             <tr>
 <?php
 $i = 0;
 if($rs_prs && $rs_prs->num_rows()) {
     foreach($rs_prs->result() as $rowPrs) {
         if(($i%2) == 0)
             echo "<tr>";
         else
             echo "<tr bgcolor=\"".$tr_color_even."\">";
 ?>
                 <td align="center"><font size="2" onClick="ReturnValue(<?php echo $rowPrs->prsId;?>,'<?php echo $rowPrs->prefixName.$rowPrs->fName.' '.$rowPrs->lName;?>')" onMouseOver="this.style.cursor='pointer'"><?php echo $i+1;?></font></td>
                 <td align="center"><font size="2" onClick="ReturnValue(<?php echo $rowPrs->prsId;?>,'<?php echo $rowPrs->prefixName.$rowPrs->fName.' '.$rowPrs->lName;?>')" onMouseOver="this.style.cursor='pointer'"><?php echo $rowPrs->personCode;?></font></td>
                 <td><font size="2" onClick="ReturnValue(<?php echo $rowPrs->prsId;?>,'<?php echo $rowPrs->prefixName.$rowPrs->fName.' '.$rowPrs->lName;?>')" onMouseOver="this.style.cursor='pointer'"><?php echo $rowPrs->prefixName.$rowPrs->fName." ".$rowPrs->lName;?></font></td>
 <?php
             $i++;
     }
 }
 ?>
         </tr>
 <?php
 if($i==0) {
 ?>
             <tr>
                 <td colspan="3" align="center" bgcolor="#FFFFFF"><font size="2" color="#FF0000">** ไม่ปรากฏรายการดังกล่าวในฐานข้อมูล **</font></td>
             </tr>
 <?php
 }
 ?>
         </table>
     </tr>
 <table width="100%" border="0" cellspacing="1" cellpadding="1">
     <tr bgcolor="silver">
         <td align="right"><font size="2">รวม <?php echo $i;?> รายการ</font></td>
     </tr>
 </table>
 </body>
 </html>
  |