Viewing file: updatePerson2.php (4.03 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include_once "template.php"; include_once "../class/clsTable.php"; include_once "../class/clsDepartment.php"; include_once "../class/clsPerson.php"; include_once "../link/function.php"; include_once "../class/clsWorkGroup.php"; include_once "getPrefix.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);
$oDP = new Department($oC); $oDP2 = new Department($oC); $oDP3 = new Department($oC); $oPS = new person($oC); $oWG = new workGroup($oC); $oWG2 = new workGroup($oC); $oWG3 = new workGroup($oC); ?> <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"> <table width="80%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr><td height="30" align="left"><strong><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"> <img src="../picture/search2.jpg" border="0" > ค้นหารายชื่อบุคลากร</font></strong></td></tr> <tr> <td height="30" align="left"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_2"];?>"> ชื่อ - นามสกุล ::</font> <input type="text" name="name" id="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; ?>"><? echo " ".GetPrefix($oPS->prefixId).$oPS->fName." ".$oPS->lName; ?></a> </font></td> </tr> <? $i++; } ?> <table width="100%" border="0" cellspacing="0" cellpadding="1"> <tr> <td align="right"> </td> </tr> </table><? } ?> </table> </form> </fieldset> <table width="704" border="0" align="center"> <tr> <td width="76" align="left"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2"> <strong>หมายเหตุ : </strong> </font></td> <td width="618" align="left"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2"> คลิกที่รายชื่อบุคลากรที่ต้องการแก้ไขข้อมูลบุคลากร</font></td> </tr> </table> <br><br> <br><br> <br><br> </td> </tr> </table> </body> </html>
<script language="javascript"> function checkFormat(){ var agree=confirm("คุณต้องการแก้ไขข้อมูลบุคลากรใช่หรือไม่ ?"); if (agree){ return true ; }else{ return false ; } } </script>
|