Viewing file: updatePerson.php (4.3 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include_once "template.php"; include_once "../class/clsTable.php"; include_once "../class/clsPerson.php"; include_once "../link/function.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EPERSON'], $GLOBALS['DBUSER_EPERSON'], $GLOBALS['DBPASS_EPERSON']);
$oPS = new Person($oC); include_once "getPrefix.php"; ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> <link href="../source/style.css" rel="stylesheet" type="text/css"> </head> <body> <br> <table width=703 align="center"> <tr><td height="150"> <fieldset> <legend><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="?mm=1">จัดการข้อมูลบุคลากร</a> <img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle">แก้ไขข้อมูลบุคลากรรายบุคคล
</font> </legend> <form name="ff"> <div align="right"><a href="updatePersonDept.php"><img src="../picture/sendusers.gif" border="0" > แก้ไขข้อมูลหน่วยงานที่สังกัดรายกลุ่ม</a> </div> <table width="80%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr><td height="30"><strong><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"><img src="../picture/mainuser.gif" border="0" > แก้ไขข้อมูลบุคลากรรายบุคคล</font></strong></td></tr> <tr><td height="30" align="left"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"> <img src="../picture/search2.jpg" border="0" > ค้นหารายชื่อบุคลากร</font></td></tr> <tr> <td height="30" align="left"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"> ชื่อ - นามสกุล ::</font> <input type="text" name="name" value="<? echo $name; ?>"> <input type=submit value="ค้นหา" align=center> </td> </tr> <tr> <td align="center"><br> <? if($name!=""){ ?> <table width="80%" height="22" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#DADADA" style="border-collapse:collapse"> <tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_15'];?>"> <td height="24" colspan="4" align="center" ><strong><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"> รายชื่อบุคลากร</font></strong></td> </tr> <tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_4'];?>"> <td height="26" width="82" align="center" ><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"><strong>ลำดับที่</strong></font></td> <td width="927" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"><strong>ชื่อ-นามสกุล</strong></font></td> </tr> <?php
$oPS->SearchByName($name); while($oPS->GetRecord()){ if(($i%2) == 0) echo "<tr>"; else echo "<tr bgcolor=\"".$GLOBALS['COLOR_BG_TABLE_8']."\">"; ?> <td width="82" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><? echo ($i+1);?> </font></td> <td align="left"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"> <a href="editPsInfo.php?ps=<? echo $oPS->personId; ?>&name=<? echo $name; ?>"><? echo GetPrefixshow($oPS->prefixId).$oPS->fName." ".$oPS->lName; ?></a> </font></td> </tr> <? $i++; } if($i==0){ ?> <tr><td colspan="2" align="center" height="22"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2">** ไม่มีข้อมูลบุคลากร **</font></td></tr> <? } ?> </table><? } ?></td></tr></table> </form> </fieldset> <table width="704" border="0" align="center"> <tr> <td width="93" align="left"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2"> <strong>หมายเหตุ : </strong> </font></td> <td width="601" align="left"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2"> คลิกที่รายชื่อบุคลากรที่ต้องการแก้ไขข้อมูลบุคลากร</font></td> </tr> </table> <br><br> </td> </tr> </table> </body> </html> <script language="javascript"> function checkFormat(){ var agree=confirm("คุณต้องการแก้ไขข้อมูลบุคลากรใช่หรือไม่ ?"); if (agree){ return true ; }else{ return false ; } } </script>
|