Viewing file: v_personRCTable.php (2.68 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["prsNameRC"].value = person;
window.opener.document.myform1.elements["prsIdRC"].value = prsId;
window.close();
}
</script>
</head>
<body bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<?php echo form_open($this->config->item("rg_folder")."popup/pr_searchPrsResponsibility", array("name" => "myform", "id" => "myform"));?>
<td><table class="szone">
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone">รหัสอาจารย์</td>
<td colspan="2"><input type="text" size="5" name="prsCode" id="prsCode"></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone">ชื่อ-สกุลอาจารย์</td>
<td><input type="text" size="10" name="prsName" id="prsName">
<input type="text" size="10" name="prsSurname" id="prsSurname">
<input type="submit" name="search" value="ค้นหา"></td>
</tr>
</table></td><?php echo form_close();?>
</tr>
<tr>
<td><br /></td>
</tr>
<tr>
<table class="headCol">
<tr>
<th class="seqCol">ลำดับที่</th>
<th>รหัสอาจารย์</th>
<th>ชื่ออาจารย์ผู้สอน</th>
<tr>
<?php
$i = 0;
if(isset($rs_prs) && $rs_prs->num_rows()) {
foreach($rs_prs->result() as $rowPrs) {
echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
?>
<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>
</tr>
<?php
$i++;
}
} else {
?>
<tr>
<td colspan="3" align="center"><span class="error">** ไม่ปรากฏรายการดังกล่าวในฐานข้อมูล **</span></td>
</tr>
<?php
}
?>
</table>
</tr>
</body>
</html>
|