ช่วยทีครับ สั่ง add แล้วไม่ยอมทำงานครับ คือช่วยดู code หน่อยครับมันเกิดอะไรทำไมถึงไม่สามารถเพิ่มข้อมูลได้ครับ
คือช่วยดู code หน่อยครับมันเกิดอะไรทำไมถึงไม่สามารถเพิ่มข้อมูลได้ครับCode (PHP)
<!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=utf-8" />
<title>Mis ศูนย์วิทยาศาตร์ข้าว</title>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
<link href="../css/table.css" rel="stylesheet" type="text/css" media="screen">
<script language="JavaScript">
var HttPRequest = false;
function doCallAjax(Mode) {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
var url = 'salary_name_save.php';
var pmeters = "tCustomerID=" + encodeURI( document.getElementById("txtCustomerID").value) +
"&tName=" + encodeURI( document.getElementById("txtName").value ) +
"&tWage2552=" + encodeURI( document.getElementById("txtWage2552").value ) +
"&tHoliday=" + encodeURI( document.getElementById("txtHoliday").value ) +
"&tSalary=" + encodeURI( document.getElementById("txtSalary").value ) +
"&tSpecialty_sala=" + encodeURI( document.getElementById("txtSpecialty_sala").value ) +
"&tSalary_out=" + encodeURI( document.getElementById("txtSalary_out").value ) +
"&tSalary_truth=" + encodeURI( document.getElementById("txtSalary_truth").value ) +
"&tRemain=" + encodeURI( document.getElementById("txtRemain").value ) +
"&tWage2553=" + encodeURI( document.getElementById("txtWage2553").value ) +
"&tSocialsecurity=" + encodeURI( document.getElementById("txtSocialsecurity").value ) +
"&tWage_new=" + encodeURI( document.getElementById("txtWage_new").value ) +
"&tSalary_budget=" + encodeURI( document.getElementById("txtSalary_budget").value ) +
"&tSalary_budget=" + encodeURI( document.getElementById("txtFarewell_stop").value ) +
"&tSalary_budget=" + encodeURI( document.getElementById("txtNote").value ) +
"&tMode=" + Mode;
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(pmeters);
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 5) // Loading Request
{
document.getElementById("mySpan").innerHTML = "Now is Loading...";
}
if(HttPRequest.readyState == 4) // Return Request
{
document.getElementById("mySpan").innerHTML = HttPRequest.responseText;
document.getElementById("txtCustomerID").value = '';
document.getElementById("txtName").value = '';
document.getElementById("txtWage2552").value = '';
document.getElementById("txtHoliday").value = '';
document.getElementById("txtSalary").value = '';
document.getElementById("txtSpecialty_sala").value = '';
document.getElementById("txtSalary_out").value = '';
document.getElementById("txtSalary_truth").value = '';
document.getElementById("txtRemain").value = '';
document.getElementById("txtWage2553").value = '';
document.getElementById("txtSocialsecurity").value = '';
document.getElementById("txtWage_new").value = '';
document.getElementById("txtSalary_budget").value = '';
document.getElementById("txtFarewell_stop").value = '';
document.getElementById("txtNote").value = '';
}
}
}
</script>
</head>
<body Onload="JavaScript:doCallAjax('LIST');">
<form name="frmMain" >
<? require"config/config_cu_con.php";
echo"<br><ul><font color='#FFFFFF' size='3'><b>รหัส $CustomerID</b></font></ul>";
while($record=mysql_fetch_array($result)){;
$Name=$record['Name'];
$Position=$record['Position'];
$CountryCode=$record['CountryCode'];
$Budget=$record['Budget'];
?>
<table width="700" border="0" class="class_a2"><tr><td><font color='#FFFFFF' size='2'><b>ชื่อ</b></font> <u><? echo"$Name";?></u></td><td><font color="#FFFFFF" size="2"><b>ตำแหน่ง</b></font> <u><? echo"$Position";?></u></td><td><font color="#FFFFFF" size="2"><b>คนงานแปลง</b></font> <u><? echo"$CountryCode";?></u></td><td><font color="#FFFFFF" size="2"><b>เงินเดือน</b></font>
<u><? echo"$Budget";?></u> <font color="#FFFFFF" size="2"><b>บาท</b></font></td><td align="left"><img src="../ico/add_to_folder.ico" width="50" height="50"></td></tr></table>
<br><font color="#006600" size="2"><b><u>ข้อมูลด้านค่าใช้จ่าย</u><b></font>
<input type="hidden" name="txtCustomerID" id="txtCustomerID" value="<? echo"$CustomerID";?>">
<input type="hidden" name="txtName" id="txtName" value="<? echo"$Name";?>">
<br><br>
<table border="0" width="700">
<tr>
<td align="center"><font color="#006600" size="2"><b>ค่าจ้างเดิม2552</b></font></td><td><input type="text" name="txtWage2552" id="txtWage2552" size="20"></td>
<td><font color="#006600" size="2"><b>วันหยุดรับพิเศษ</b></font></td><td><input type="text" name="txtHoliday" id="txtHoliday" size="20"></td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>เงินเดือน</b></font></td><td><input type="text" name="txtSalary" id="txtSalary" size="20" ></td>
<td><font color="#006600" size="2"><b>เงินเพิ่ม(รับพิเศษ)</b></font></td><td><input type="text" name="txtSpecialty_sala" id="txtSpecialty_sala" size="20" ></td>
</tr>
<tr><td align="center"><font color="#006600" size="2"><b>เงินเดือนที่เบิกออกมา</b></font></td><td><input type="text" name="txtSalary_out" id="txtSalary_out" size="20" ></td><td><font color="#006600" size="2"><b>เงินเดือนที่รับจริง</b></font></td><td><input type="text" name="txtSalary_truth" id="txtSalary_truth" size="20" > </td>
</tr>
<tr><td align="center"><font color="#006600" size="2"><b>ส่วนที่เหลือ</b></font></td><td><input type="text" name="txtRemain" id="txtRemain" size="20" /></td></td>
<td><font color="#006600" size="2"><b>ค่าจ้างปี2553</b></font></td><td><input type="text" name="txtWage2553" id="txtWage2553" size="20" > </td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>ค่าประกันสังคม</b></font></td><td><input type="text" name="txtSocialsecurity" id="txtSocialsecurity" size="20" ></td>
<td><font color="#006600" size="2"><b>ค่าจ้างรับสุทธิ/เดือน</b></font></td><td><input type="text" name="txtWage_new" id="txtWage_new" size="20" ></td></td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>ใช้เงินงบ</b></font></td><td><input type="text" name="txtSalary_budget" id="txtSalary_budget" size="20" > </td></td>
<td><font color="#006600" size="2">สรุปการลาหยุด(1ต.ค51-30 ก.ย.52)</font></td><td><input type="text" name="txtFarewell_stop" id="txtFarewell_stop" size="20" ></td><td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>หมายเหตุ</b></font></td><td><input type="text" name="txtNote" id="txtNote" size="20" ></td>
</tr>
<tr></td></td><td>
</td></tr>
</table><input type="button" name="btnAdd" id="btnAdd" value="Add" OnClick="JavaScript:doCallAjax('ADD');">
<br><br>
<span id="mySpan"></span>
</form>
<br><br><br><div align="right"><img src="../ico/delete.ico" width="32" height="32"></div>
<? }?>
</body>
</html>
อันนี้เป็น page add ข้อมูล
Code (PHP)
<?php
$strMode = $_POST["tMode"];
$objConnect = mysql_connect("localhost","root","test") or die("Error Connect to Database");
mysql_query("set NAMES'UTF8'");
$objDB = mysql_select_db("mydatabase");
if($strMode == "ADD")
{
$strSQL = "INSERT INTO tb_laborer";
$strSQL .="(CustomerID,Name,Wage2552,Holiday,Salary,Specialty_sala,Note,Salary_out,Salary_truth,Remain,Wage2553,Socialsecurity,Wage_new,Salary_budget,Farewell_stop,Note) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["tCustomerID"]."','".$_POST["tName"]."','".$_POST["tWage2552"]."' ";
$strSQL .="('".$_POST["tHoliday"]."','".$_POST["tSalary"]."','".$_POST["tSpecialty_sala"]."' ";
$strSQL .="('".$_POST["tSalary_out"]."','".$_POST["tSalary_truth"]."','".$_POST["tRemain"]."' ";
$strSQL .="('".$_POST["tWage2553"]."','".$_POST["tSocialsecurity"]."','".$_POST["tWage_new"]."' ";
$strSQL .=",'".$_POST["tSalary_budget"]."','".$_POST["tFarewell_stop"]."','".$_POST["tNote"]."') ";
$objQuery = mysql_query($strSQL);
}
</table>
<?
mysql_close($objConnect);
?>
Tag : - - - -
Date :
2009-12-23 11:49:45
By :
ryuk
View :
879
Reply :
10
ตรงนี้
Code (PHP)
$objQuery = mysql_query($strSQL);
ลองเปลี่ยนเป็นแบบข้างล่างเพื่อดูว่า คำสั่งคิวรีถูกต้องปะ
Code (PHP)
$objQuery = mysql_query($strSQL)or die(mysql_error());
แต่ผมรู้สึกว่า query string ของคุณมันแปลกๆ เครื่องหมายวงเล็บน่าจะมีแค่ 2 อันปะ แค่อันแรกและสุดท้าย(สีเขียว)
$strSQL = "INSERT INTO tb_laborer";
$strSQL .="(CustomerID,Name,Wage2552,Holiday,Salary,Specialty_sala,Note,Salary_out,Salary_truth,Remain,Wage2553,Socialsecurity,Wage_new,Salary_budget,Farewell_stop,Note) ";
$strSQL .="VALUES ";
$strSQL .="( '".$_POST["tCustomerID"]."','".$_POST["tName"]."','".$_POST["tWage2552"]."' ";
$strSQL .="( '".$_POST["tHoliday"]."','".$_POST["tSalary"]."','".$_POST["tSpecialty_sala"]."' ";
$strSQL .="( '".$_POST["tSalary_out"]."','".$_POST["tSalary_truth"]."','".$_POST["tRemain"]."' ";
$strSQL .="( '".$_POST["tWage2553"]."','".$_POST["tSocialsecurity"]."','".$_POST["tWage_new"]."' ";
$strSQL .=",'".$_POST["tSalary_budget"]."','".$_POST["tFarewell_stop"]."','".$_POST["tNote"]."') ";
Date :
2009-12-23 11:57:32
By :
naskw
ตามด้านบนครับ
ลอง echo $strSQL; ออกมาดูครับ
Date :
2009-12-23 12:10:02
By :
aknueng
เดียวลองแก้ตามที่บอกก่อนนะครับ
Date :
2009-12-23 15:18:18
By :
ryuk
แบบนี้ก็บันทึกไม่ได้อะ
ทำงัยอะครับดูให้ทีผิดตรงไหนครับพี่ๆๆ งงครับ
Code (PHP)
<?php
$strMode = $_POST["tMode"];
$objConnect = mysql_connect("localhost","root","test") or die("Error Connect to Database");
mysql_query("set NAMES'UTF8'");
$objDB = mysql_select_db("mydatabase");
if($strMode == "ADD")
{
$strSQL = "INSERT INTO tb_laborer";
$strSQL .="(CustomerID,Name,Wage2552,Holiday,Salary,Specialty_sala,Salary_out,Salary_truth,Remain,Wage2553,Socialsecurity,Wage_new,Salary_budget,Farewell_stop,Note) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["tCustomerID"]."','".$_POST["tName"]."','".$_POST["tWage2552"]."' ";
$strSQL .=",'".$_POST["tHoliday"]."','".$_POST["tSalary"]."','".$_POST["tSpecialty_sala"]."','".$_POST["tSalary_out"]."','".$_POST["tSalary_truth"]."','".$_POST["tRemain"]."','".$_POST["tWage2553"]."','".$_POST["tSocialsecurity"]."','".$_POST["tWage_new"]."','".$_POST["tSalary_budget"]."','".$_POST["tFarewell_stop"]."','".$_POST["tNote"]."') ";
$objQuery = mysql_query($strSQL);
}
$strSQL = "SELECT * FROM tb_laborer WHERE Name LIKE '%".$strSearch."%' ORDER BY CustomerID ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<? echo"$strSQL"; ?>
<table width="600" border="0">
<tr>
<th width="91"> <div align="center">รหัส</div></th>
<th width="198"> <div align="center">ชื่อ-สกุล</div></th>
<th width="198"> <div align="center">ตำแหน่งงาน</div></th>
<th width="97"> <div align="center">คนงานแปลง</div></th>
<th width="59"> <div align="center">เงินเดือน</div></th>
<th width="71"> <div align="center">คงเหลือ</div></th>
<th width="198"> <div align="center">หมายเหตุ</div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
Date :
2009-12-23 17:28:44
By :
ryuk
Code (PHP)
$objQuery = mysql_query($strSQL) or die(mysql_error());
มีอะไรเกิดขึ้นไหม
Date :
2009-12-23 17:44:59
By :
plakrim
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE CustomerID = ''' at line 1
มันขึ้นแบบนี้อะครับ งงครับ
Date :
2009-12-24 14:06:28
By :
ryuk
where CustomerID = '''
ผิดที่มี single quote 3 ตัวครับ
Date :
2009-12-24 14:13:52
By :
aknueng
คือว่าตอนนี้ สามารถเพิ่มข้อมูลลง database ได้แล้วแต่ว่า มันดันเพิ่มแบบนี้อะครับ
เวลาเรากดบันทึก จะได้แบบนี้อะครับ จริงแล้วมันน่าจะอยู่ แถวเดียวกันอะครับ เพราะกดบันทึกแค่ครั้งเดียวอะครับ
ผมงงอะครับมันเกิดได้ยังงัยครับ ช่วยทีครับ พึ่งหัดทำครับเลยงงอยู่
Date :
2009-12-24 15:38:03
By :
ryuk
Code (PHP)
<?php
$objConnect = mysql_connect("localhost","root","test") or die("Error Connect to Database");
mysql_query("set NAMES'UTF8'");
$objDB = mysql_select_db("mydatabase");
$strMode = $_POST["tMode"];
$strSQL = "INSERT INTO tb_laborer SET ";
$strSQL .="Id= '".$_POST["tId"]."' ";
$strSQL .=",CustomerID = '".$_POST["tCustomerID"]."' ";
$strSQL .=",Name = '".$_POST["tName"]."' ";
$strSQL .=",Wage_w = '".$_POST["tWage_w"]."' ";
$strSQL .=",Holiday = '".$_POST["tHoliday"]."' ";
$strSQL .=",Salary = '".$_POST["tSalary"]."' ";
$strSQL .=",Specialty_sala = '".$_POST["tSpecialty_sala"]."' ";
$strSQL .=",Salary_out = '".$_POST["tSalary_out"]."' ";
$strSQL .=",Salary_truth = '".$_POST["tSalary_truth"]."' ";
$strSQL .=",Remain = '".$_POST["tRemain"]."' ";
$strSQL .=",Wage_wp = '".$_POST["tWage_wp"]."' ";
$strSQL .=",Social_security = '".$_POST["tSocial_security"]."' ";
$strSQL .=",Wage_new = '".$_POST["tWage_new"]."' ";
$strSQL .=",Salary_budget = '".$_POST["tSalary_budget"]."' ";
$strSQL .=",Farewell_stop= '".$_POST["tFarewell_stop"]."' ";
$strSQL .=",Note = '".$_POST["tNote"]."' ";
$objQuery = mysql_query($strSQL) or die(mysql_error());
$strSQL = "SELECT * FROM tb_laborer WHERE Name LIKE '%".$strSearch."%' ORDER BY CustomerID ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
อันนี้เป็น code ที่จะใส่ข้อมูลแบบปกติ อะครับ คือเพิ่มได้แล้ว
แต่ว่าเวลาเพิ่มมันเพิ่มแบบสองรอบอครับ
พอเพิ่มเสร็จแล้วจะได้รูปแบบนี้ครับ
งงมากเลยครับ ไม่เข้าใจ
ส่วน codeต่อไปคือส่วนของ Input
Code (PHP)
<!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=utf-8" />
<title>Mis ศูนย์วิทยาศาตร์ข้าว</title>
<link href="css/styte.css" rel="stylesheet" type="text/css" media="screen" />
<link href="../css/table.css" rel="stylesheet" type="text/css" media="screen">
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
<script language="JavaScript">
var HttPRequest = false;
function doCallAjax(Mode) {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
var url = 'salary_name_save.php';
var pmeters = "tCustomerID=" + encodeURI(document.getElementById("txtCustomerID").value) +
"&tName=" + encodeURI(document.getElementById("txtName").value) +
"&tWage_w=" + encodeURI(document.getElementById("txtWage_w").value) +
"&tHoliday=" + encodeURI(document.getElementById("txtHoliday").value) +
"&tSalary=" + encodeURI(document.getElementById("txtSalary").value) +
"&tSpecialty_sala=" + encodeURI(document.getElementById("txtSpecialty_sala").value) +
"&tSalary_out=" + encodeURI(document.getElementById("txtSalary_out").value) +
"&tSalary_truth=" + encodeURI(document.getElementById("txtSalary_truth").value) +
"&tRemain=" + encodeURI(document.getElementById("txtRemain").value) +
"&tWage_wp=" + encodeURI(document.getElementById("txtWage_wp").value) +
"&tSocial_security=" + encodeURI(document.getElementById("txtSocial_security").value) +
"&tWage_new=" + encodeURI(document.getElementById("txtWage_new").value) +
"&tSalary_budget=" + encodeURI(document.getElementById("txtSalary_budget").value) +
"&tFarewell_stop=" + encodeURI(document.getElementById("txtFarewell_stop").value) +
"&tNote=" + encodeURI( document.getElementById("txtNote").value) +
"&tMode=" + Mode;
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(pmeters);
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 5) // Loading Request
{
document.getElementById("mySpan").innerHTML = "Now is Loading...";
}
if(HttPRequest.readyState == 3) // Return Request
{
document.getElementById("mySpan").innerHTML = HttPRequest.responseText;
document.getElementById("txtCustomerID").value = '';
document.getElementById("txtName").value = '';
document.getElementById("txtWage_w").value = '';
document.getElementById("txtHoliday").value = '';
document.getElementById("txtSalary").value = '';
document.getElementById("txtSpecialty_sala").value = '';
document.getElementById("txtSalary_out").value = '';
document.getElementById("txtSalary_truth").value = '';
document.getElementById("txtRemain").value = '';
document.getElementById("txtWage_wp").value = '';
document.getElementById("txtSocial_security").value = '';
document.getElementById("txtWage_new").value = '';
document.getElementById("txtSalary_budget").value = '';
document.getElementById("txtFarewell_stop").value = '';
document.getElementById("txtNote").value = '';
}
}
}
</script>
</head>
<body Onload="JavaScript:doCallAjax('LIST');">
<form name="frmMain" >
<? require"config/config_cu_con.php";
echo"<br><ul><font color='#FFFFFF' size='3'><b>รหัส $CustomerID</b></font></ul>";
while($record=mysql_fetch_array($result))
{
$Name=$record['Name'];
$Position=$record['Position'];
$CountryCode=$record['CountryCode'];
$Budget=$record['Budget'];
?><div id="header">
<table width="700" border="0" ><tr><td><font color='#FFFFFF' size='2'><b>ชื่อ</b></font> <u><? echo"$Name";?></u></td><td><font color="#FFFFFF" size="2"><b>ตำแหน่ง</b></font> <u><? echo"$Position";?></u></td><td><font color="#FFFFFF" size="2"><b>คนงานแปลง</b></font> <u><? echo"$CountryCode";?></u></td><td><font color="#FFFFFF" size="2"><b>เงินเดือน</b></font>
<u><? echo"$Budget";?></u> <font color="#FFFFFF" size="2"><b>บาท</b></font></td><td align="left"><img src="../ico/add_to_folder.ico" width="50" height="50"></td></tr></table></div>
<br><font color="#006600" size="2"><b><u>ข้อมูลด้านค่าใช้จ่าย</u><b></font>
<input type="hidden" name="txtCustomerID" id="txtCustomerID" value="<? echo"$CustomerID";?>">
<input type="hidden" name="txtName" id="txtName" value="<? echo"$Name";?>">
<br><br>
<table border="0" width="700">
<tr>
<td align="center"><font color="#006600" size="2"><b>ค่าจ้างเดิม2552</b></font></td><td><input type="text" name="txtWage_w" id="txtWage_w" size="20"></td>
<td><font color="#006600" size="2"><b>วันหยุดรับพิเศษ</b></font></td><td><input type="text" name="txtHoliday" id="txtHoliday" size="20"></td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>เงินเดือน</b></font></td><td><input type="text" name="txtSalary" id="txtSalary" size="20" ></td>
<td><font color="#006600" size="2"><b>เงินเพิ่ม(รับพิเศษ)</b></font></td><td><input type="text" name="txtSpecialty_sala" id="txtSpecialty_sala" size="20" ></td>
</tr>
<tr><td align="center"><font color="#006600" size="2"><b>เงินเดือนที่เบิกออกมา</b></font></td><td><input type="text" name="txtSalary_out" id="txtSalary_out" size="20" ></td><td><font color="#006600" size="2"><b>เงินเดือนที่รับจริง</b></font></td><td><input type="text" name="txtSalary_truth" id="txtSalary_truth" size="20" > </td>
</tr>
<tr><td align="center"><font color="#006600" size="2"><b>ส่วนที่เหลือ</b></font></td><td><input type="text" name="txtRemain" id="txtRemain" size="20" /></td></td>
<td><font color="#006600" size="2"><b>ค่าจ้างปี2553</b></font></td><td><input type="text" name="txtWage_wp" id="txtWage_wp" size="20" > </td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>ค่าประกันสังคม</b></font></td><td><input type="text" name="txtSocial_security" id="txtSocial_security" size="20" ></td>
<td><font color="#006600" size="2"><b>ค่าจ้างรับสุทธิ/เดือน</b></font></td><td><input type="text" name="txtWage_new" id="txtWage_new" size="20" ></td></td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>ใช้เงินงบ</b></font></td><td><input type="text" name="txtSalary_budget" id="txtSalary_budget" size="20" > </td></td>
<td><font color="#006600" size="2">สรุปการลาหยุด(1ต.ค51-30 ก.ย.52)</font></td><td><input type="text" name="txtFarewell_stop" id="txtFarewell_stop" size="20" ></td><td>
</tr>
<tr>
<td align="center"><font color="#006600" size="2"><b>หมายเหตุ</b></font></td><td><input type="text" name="txtNote" id="txtNote" size="20" ></td>
</tr>
<tr></td></td><td>
</td></tr>
</table>
<input type="button" name="btnAdd" id="btnAdd" value="Add" OnClick="JavaScript:doCallAjax('ADD');">
<br><br>
<span id="mySpan"></span>
</form>
<? }?>
<br><br><br><div align="right"><img src="ico/delete.ico" width="32" height="32"></div>
<div id="footer"></div>
</body>
</html>
Date :
2009-12-25 09:20:42
By :
ryuk
Load balance : Server 05