Viewing file: Insert_pos_his.php (3.02 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php session_start(); if (session_is_registered("valid_user")) { $Username = $valid_user; include("../include/FunctionDB.php"); include("../include/Function.php"); ConnectDB(); $Flag = true; $Teacher_code = htmlspecialchars(trim($_POST['Teacher_code'])); $Position_id = htmlspecialchars(trim($_POST['Position_id'])); $Gover_pos = htmlspecialchars(trim($_POST['Gover_pos'])); $Level = htmlspecialchars(trim($_POST['Level'])); $Salary = htmlspecialchars(trim($_POST['Salary'])); $Date_post = $_POST['mYear']."-".$_POST['mMonth']."-".$_POST['mDate'];
///////////////////// check name if ($Position_id =="") { $msg .="<li>กรุณากรอก เลขที่ตำแหน่ง"; $button ="<input type=\"button\" value=\"Back to Edit\" onclick=\"history.back();\" style=\"font-weight:bold;color:#FFF;background-color:#036;border-style:outset;border-color:#69F;font-family:Tohoma;\">"; $Flag = false; } /////////////////// Check Lastname if ($Gover_pos =="") { $msg .="<li>กรุณากรอก ตำแหน่งทางราชการ"; $button ="<input type=\"button\" value=\"Back to Edit\" onclick=\"history.back();\" style=\"font-weight:bold;color:#FFF;background-color:#036;border-style:outset;border-color:#69F;font-family:Tohoma;\">"; $Flag = false; } /////////////////////// Check Address if( $Flag) { Insert_Position_History($Teacher_code,$Position_id,$Date_post,$Gover_pos,$Manage_pos,$Level,$Salary,$Skill,$Order_id,$Ref_doc); $msg.="<li>ระบบจัดเก็บข้อมูลเรียบร้อยแล้ว"; echo"<meta http-equiv=\"refresh\" content=\"2;URL=Show_Pos_History.php?Teacher_code= $Teacher_code\">\n"; } CloseDB(); ?> <html> <head> <title> Inserting History </title> <meta http-equiv="Content-Type" content="text/html; charset=windows-874"> <link href="../../../css/style1.css" rel="stylesheet" type="text/css"> </head> <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0"marginwidth="0"marginheight="0"> <form> <br> <table width="68%" border="0" cellspacing="0"cellpadding="2"align="center"> <tr> <td><div align="center"><span><b><font color="#003333" size="4" face="Tahoma">::ฟอร์มการเพิ่มข้อมูล::</font></b></span></div></td> </tr> <tr> <td> <table width="74%" border="0" cellspacing="1"cellpadding="0"align="center"bordercolor="#0B62D9" class="table"> <tr> <td bgcolor="#D9ECFF"> <div align="center"><b><font color="#000000" size="3" face="Tahoma">ระบบแจ้งการทำงาน</font></b></div></td> </tr> <tr> <td bgcolor="#000000"> <table width="90%" border="0"align="center"cellpadding="2" cellspacing="0" bgcolor="#000000"> <tr> <td><font color="#FFFFFF" size="4" face="Tahoma"><span><b><?php echo $msg;?></b></span></font></td> </tr> </table></td> </tr> <tr> <td bgcolor="#D9ECFF"> <div align="center"><b><font color="#CCFF00"><?php echo $button;?></font></b></div></td> </tr> </table> </td> </tr> </table> <br> <br> </form> </body> </html> <?php } else { echo"<meta http-equiv=\"refresh\" content=\"3;URL=../../login.php\">\n"; echo"Please Login "; } ?>
|