Viewing file: configDev.php (5.32 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
session_start();
/** Define Validate Access */
define( '_VALID_ACCESS', 1 );
/** Check Session User Login */
if( !session_is_registered("valid_user") && !session_is_registered("Priority") ) {
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\" />";
echo "<p style=padding-top:115px><p align=center><br /><font color=red><strong>กรุณาทำการ Login ก่อน</strong></font></p></p>";
echo "<meta http-equiv=\"refresh\" content=\"1; URL=../login.php\" />";
exit();
}
else {
/** Configuration */
require_once( "../configuration.php" );
require_once( $_Config_absolute_path . "/includes/framework.php" );
require_once( "../includes/Function.php" );
/** Create Database Object */
$dbObj = new DBConn;
//=== SESSION
$Username = $valid_user;
/** Config Table for This Page */
$myTable1 = "dev_config";
/** Table --> personal_tb */
$query = " SELECT * FROM $myTable1 ";
$result = $dbObj->execQuery($query);
$rs = $dbObj->fetchArray($result);
} # else
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<link href="../css/default.css" rel="stylesheet" type="text/css" />
<script language="javascript" src="../js/utilities.js"></script>
<title>ข้อมูลประวัติส่วนตัว - แก้ไขข้อมูลประวัติส่วนตัว</title>
</head>
<body topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0">
<?php
include("../templates/incHeader.php");
?>
<table width="1003" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="203" align="left" valign="top" style="padding:10px 0px 0px 5px"><?php include("./_incMainMenu.php");?></td>
<td width="800" height="440" align="center" valign="top" style="padding:10px 0px 5px 10px">
<fieldset>
<form id="myForm" name="myForm" method="post" action="UpdateConfigDev.php" enctype="multipart/form-data">
<table width="780" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="5"></td>
</tr>
<tr>
<td height="30" background="../images/background/bg-head-topic-w780.gif" class="PADDING-LEFT-10"><strong><a href="index.php">หน้าหลัก</a></strong><strong> »</strong><strong> <span class="NOTE">กำหนดข้อมูลหน่วยงาน</span></strong></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<span class="PADDING-TOP-10">
<img src="../images/icons/arrow-circle-225-left.png" width="16" height="16" border="0" align="absmiddle" />
<a href="javascript:;" onclick="window.history.back();"><strong>‹ ย้อนกลับ</strong></a>
</span>
</td>
</tr>
<tr>
<td height="150" align="center">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="76%">
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#E4E4E4">
<tr bordercolor="#E7FAFE">
<td width="128" height="20" align="right" bordercolor="#FFFFFF" bgcolor="#FFFFFF">ชื่อหน่วยงานที่สังกัด</td>
<td width="8" nowrap="nowrap" bgcolor="#FFFFFF">:</td>
<td width="626" nowrap="nowrap" bgcolor="#FFFFFF">
<?php
$query = " SELECT * FROM dev_cdepartment WHERE deptcode ='$rs[deptId]' " ;
$result10 = $dbObj->execQuery($query);
$rs10= $dbObj->fetchArray($result10);
?>
<input name="longpre" type="text" class="PADDING-LEFT-5" id="longpre" style="text-align:left" value="<? echo $rs['longpre'] ; ?>" size="30" readonly="readonly" />
<input name="deptname" type="text" class="PADDING-LEFT-5" id="deptname" style="text-align:left" value="<? echo $rs['deptname'] ; ?>" size="30" readonly="readonly" />
<input name="deptId" type="hidden" id="deptId" value="<? echo $rs10['deptcode'] ; ?>" />
<input name="shortpre" type="hidden" id="shortpre" value="<? echo $rs['shortpre'] ; ?>" />
<a href="javascript:;" onclick="MM_openBrWindow('showTConfig.php','Detail','scrollbars=yes,width=820,height=350')"><img src="../images/icons/search.gif" alt="เลือกหน่วยงาน" width="14" height="16" border="0" align="absmiddle" /></a>
</td>
</tr>
<tr bgcolor="#CEE6FF">
<td colspan="3" bgcolor="#FFFFFF"> </td>
</tr>
<tr bgcolor="#CEE6FF">
<td height="20" colspan="3" align="center" bgcolor="#FFFFFF">
<input name="btnSubmit" type="submit" id="btnSubmit" class="WIDTH60 CURSOR-HAND" value="บันทึก" />
<input name="btnBack" type="button" id="btnBack" onclick="location.href='Show_Fam_History.php?Teacher_code=<? echo $rs['Teacher_code'];?>'" value="ยกเลิก" class="WIDTH60 CURSOR-HAND" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</form>
</fieldset>
</td>
</tr>
</table>
<?php include("../templates/incFooter.php"); ?>
</body>
</html>
<?php
/** Free Resource */
$dbObj->freeresult($result1);
/** Close the Database */
$dbObj->disconn();
/** Unset Class */
unset($dbObj);
?>
|