Viewing file: popDialog.php (3.32 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once "global.php";
include_once ("class/clsUmuser.php");
$oC = new Connection(CONNSTR);
$oUM = new umuser($oC);
//****************** Declare Variable *********************//
$user=(! isset($_POST['user'])? "" : $_POST['user']);
$pwd=(! isset($_POST['pwd'])? "" : $_POST['pwd']);
$ok=(! isset($_POST['ok'])? "" : $_POST['ok']);
$errStr="";
//****************************************************//
if($ok=="ตกลง"){
$oUM->SearchPersonId($user,$pwd);
if($oUM->GetRecord()){
echo "<script language=\"JavaScript\">";
echo "window.opener.document.f1.personId.value=".$oUM->UsPsCode.";";
echo "window.opener.document.f1.action='memRegisIn.php';";
echo "window.opener.document.f1.submit();";
echo "window.close();";
echo "</script>";
}else{
$errStr="ข้อมูลที่กรอกมาไม่ถูกต้อง กรุณาตรวจสอบอีกครั้ง";
}
}
?>
<html>
<head>
<title>สำหรับดึงข้อมูลจากระบบบุคลากร</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<link href="source/style.css" rel="stylesheet" type="text/css">
<style>
<!--
A:link {text-decoration: none }
A:visited {text-decoration: none}
A:hover {text-decoration: none; font-weight: underline}
.style1 {
font-family: "MS Sans Serif", sans-serif;
font-weight: bold;
font-size: 11pt;
color: red;
}
.style2 {
font-family: "MS Sans Serif", sans-serif;
font-weight: bold;
font-size: 11pt;
color: #000000;
}
.style3 {
font-family: "MS Sans Serif", sans-serif;
font-size: 11pt;
color: #990000;
}
.style5 {
font-family: "MS Sans Serif", sans-serif;
font-weight: bold;
font-size: 11pt;
color: #F5F5F5;
}
-->
</style>
<!---------------------------------------Begin JavaScript---------------------------------------->
<script language="JavaScript">
function chkFormat(){
f=document.ps;
if(f.user.value==""){
alert("กรุณากรอกชื่อผู้ใช้ !");
f.user.focus();
return false;
}else if(f.pwd.value==""){
alert("กรุณากรอกรหัสผ่าน !");
f.pwd.focus();
return false;
}
}
function cancleClick(){
window.opener.document.f1.personId.value="";
window.close();
}
</script>
</head>
<body bgcolor="#F5F5F5">
<form method="post" name="ps">
<table width="90%" border="0" cellspacing="1" cellpadding="1" background="picture/bg.jpg"align="center">
<tr>
<td colspan="2" align="center"> <? if($errStr!="") echo "<span class=\"style1\">".$errStr."</span>";?></td>
</tr>
<tr>
<td width="41%" align="right"><span class="style2">ชื่อผู้ใช้ </span></td>
<td width="59%"><input type="text" name="user" size="15" value="<?=$user;?>"></td>
</tr>
<tr>
<td width="41%" align="right"><span class="style2">รหัสผ่าน </span></td>
<td width="59%"><input type="password" name="pwd" size="15"></td>
</tr>
<tr>
<td colspan="2" align="center" height="10"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="ok" value="ตกลง" onClick="return chkFormat()"><input type="button" name="cancle" value="ยกเลิก" onClick="cancleClick()"></td>
</tr>
<tr>
<td colspan="2" align="center"> </td>
</tr>
</table>
<div align="left"><span class="style3"> <b>หมายเหตุ :</b> "ชื่อผู้ใช้" และ "รหัสผ่าน" หมายถึง ส่วนที่ใช้ในการ<br> Login เข้าระบบสารสนเทศของวิทยาลัย</span></div>
</form>
</body>
</html>
|