Viewing file: processCheckRunningDeptPsId.php (3.11 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
echo "<meta http-equiv='refresh' content='0; URL=editRunningDeptDocConfirm.php'>";
/*
include_once "template.php";
include_once "../link/function.php";
if($pwd==""){
session_unregister("Pass");
include_once "../class/clsPerson.php";
include_once "../class/clsSysConfig.php";
include_once "connectums.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);
$oPS = new person($oC);
$oSys = new sysConfig($oC);
$editRunningPsId = $oSys->SearchByeditRunningPsId();
$oPS->SearchByKey($editRunningPsId); $oPS->GetRecord();
$oUm->SearchByUsPsCode($editRunningPsId);
$oUm->GetRecord();
?>
<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>
<iframe id="addrunningDoc" name="addrunningDoc" src="" style="width:$0px;height:0px;border:0"></iframe>
<br>
<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"><a href="?mm=1">แก้ไขข้อมูลทะเบียนหนังสือกรณีพิเศษ</a>
<img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle">แก้ไขข้อมูลทะเบียนหนังสือแต่ละหน่วยงาน
</font></legend><br>
<table width="70%" border="0" align="center">
<form name="ff" method="post">
<tr>
<td align="center" colspan="2" height="22">
<font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2">
<? if($checkfalse=="1"){ echo "รหัสผ่านไม่ถูกต้อง"; }?>
</font>
</td>
</tr>
<tr>
<td height="22" align="right"><strong>
ผู้มีสิทธิ์ในการแก้ไขทะเบียนหนังสือ :: </strong>
</td>
<td align="left"> <? echo " ".GetPrefix($oPS->prefixId).$oPS->fName." ".$oPS->lName; ?></td>
</tr>
<tr>
<td width="280" height="22" align="right"><strong>รหัสผ่าน ::</strong></td>
<td align="left"> <input name="pwd" type="password" size="15"></td>
</tr>
<tr>
<td colspan="3"><div align="center"><br>
<input type="submit" name="add" value="ลงชื่อเข้าใช้" onClick="return checkSubmitAll();">
<input type="reset" name="clear" value="เคลียร์ข้อมูล">
<input type="button" name="cancel" value="ยกเลิก" onClick="location.href = 'runningDoc.php'">
<input type="hidden" name="method" value="checkpwd">
<input type="hidden" name="UsPsCode" value="<? echo $oUm->UsPsCode; ?>">
</div></td>
</tr>
</form> </table>
</fieldset>
<script language="JavaScript">
function checkSubmitAll(){
if(document.ff.pwd.value == ""){
alert("กรุณากรอกรหัสผ่าน");
document.ff.pwd.focus();
return false;
}
}
</script>
<? }else{
if($oU->SearchByPsCodeAndPasswd($UsPsCode , $pwd)){
session_register("Pass");
$Pass=1;
echo "<meta http-equiv='refresh' content='0; URL=editRunningDeptDocConfirm.php'>";
}else{
echo "<meta http-equiv='refresh' content='0; URL=processCheckRunningDeptPsId.php?checkfalse=1'>";
}
} ?>
*/
|