Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > งงครับพี่น้อง คือแบบนี้นะ พอเวลาผมadd ข้อมูลลงไปนะครับ แล้วมันบันทึกได้



 

งงครับพี่น้อง คือแบบนี้นะ พอเวลาผมadd ข้อมูลลงไปนะครับ แล้วมันบันทึกได้

 



Topic : 036220



โพสกระทู้ ( 1,751 )
บทความ ( 0 )



สถานะออฟไลน์




คือแบบนี้นะ พอเวลาผมadd ข้อมูลลงไปนะครับ แล้วมันบันทึกได้ สอง แถวเลยอะครับ งงมากๆๆ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-12-25 15:00:33 By : ryuk View : 840 Reply : 10
 

 

No. 1



โพสกระทู้ ( 484 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ขอ Code ดูด้วยครับ

บอกมาอย่างนี้ผมก้องงครับ






Date : 2009-12-25 15:08:43 By : onizike
 


 

No. 2



โพสกระทู้ ( 468 )
บทความ ( 0 )



สถานะออฟไลน์


จัด code มาหน่อยคราบ
Date : 2009-12-25 15:11:33 By : parita
 

 

No. 3



โพสกระทู้ ( 1,751 )
บทความ ( 0 )



สถานะออฟไลน์


ส่วนนี้เป็นส่วน 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 == 10)  // Loading Request
				  {
				   document.getElementById("mySpan").innerHTML = "Now is Loading...";
				  }

				 if(HttPRequest.readyState == 10) // 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>&nbsp;&nbsp;<u><? echo"$Name";?></u></td><td><font color="#FFFFFF" size="2"><b>ตำแหน่ง</b></font>&nbsp;&nbsp;<u><? echo"$Position";?></u></td><td><font color="#FFFFFF" size="2"><b>คนงานแปลง</b></font>&nbsp;&nbsp;<u><? echo"$CountryCode";?></u></td><td><font color="#FFFFFF" size="2"><b>เงินเดือน</b></font>
&nbsp;&nbsp;<u><? echo"$Budget";?></u>&nbsp;&nbsp;<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>
<input type="text" name="txtCustomerID" id="txtCustomerID" value="<? echo"$CustomerID";?>">
<input type="text" name="txtName" id="txtName" value="<? echo"$Name";?>">

<br><font color="#006600" size="2"><b><u>ข้อมูลด้านค่าใช้จ่าย</u><b></font>

<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>


ส่วนนี้เป็นส่วน add ข้อมูลครับ
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"]."' ";
//$strSQL .="WHERE CustomerID = '".$_POST["tCustomerID"]."' ";
$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."]");



?>
<? echo"$strSQL";?>
<font color="#006600" size="2">
<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["Salary_truth"];?></td>
  </tr>
<?
}

?>
</table>
</font>
<?
mysql_close($objConnect);
?>


Date : 2009-12-25 15:12:33 By : ryuk
 


 

No. 4

Guest


ผมเดาหน่ะครับ หน้ารับของคุณอ่ะครับ คุณส่งเป็น Mode : Add
แล้วตัวแปร SQL คือ $strSQL

ตอน Select กับ insert มันเหมือนกัน ลองใส่ if ขั้น หรือเปลี่ยนชื่อตัวแปรดูไหมครับ

ปล. ผมเดา
Date : 2009-12-25 15:19:58 By : ความรู้เท่าหางอึ่ง
 


 

No. 5



โพสกระทู้ ( 468 )
บทความ ( 0 )



สถานะออฟไลน์


$objQuery = mysql_query($strSQL) or die(mysql_error());


$objQuery = mysql_query($strSQL) or die ("Error Query


ผมสงสัยทำมัยมีสองตัว
Date : 2009-12-25 15:20:02 By : parita
 


 

No. 6



โพสกระทู้ ( 532 )
บทความ ( 1 )



สถานะออฟไลน์


เยอะดีครับ
Date : 2009-12-25 15:20:44 By : tingtongkub
 


 

No. 7



โพสกระทู้ ( 356 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ถ้ามันลง 2 ครั้ง สิ่งแรกที่ต้องดูคือ mysql_query ครับ ว่ามันทำกี่ครั้ง

จากในโค๊ดของคุณ มันมี2 อัน เท่ากับทำ2ครั้ง
ต้อง คอมเม้น อันบนออกครับ
Date : 2009-12-25 15:27:41 By : aknueng
 


 

No. 8



โพสกระทู้ ( 1,751 )
บทความ ( 0 )



สถานะออฟไลน์


ผมลองแก้ตามแล้วนะครับ มันขึ้นแบบนี้เลยครับ

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 'Id= '' ,CustomerID = 'C002' ,Name = 'นางบาง พันยุ�' at line 1
Date : 2009-12-25 15:40:37 By : ryuk
 


 

No. 9



โพสกระทู้ ( 484 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ลองเปลี่ยนชื่อตัวแปรดูครับ ตรง INSERT ก้ใช้เป็น $strSQL1 กับ $objQuery1

แล้วตรง SELECT ก็ใช้เป็น $strSQL2 กับ $objQuery2 ลองดูครับ
Date : 2009-12-25 15:44:00 By : onizike
 


 

No. 10



โพสกระทู้ ( 484 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ตรง INSERT น่าจะผิดนะครับ ลองเป็น INSERT INTO tb_laborer(r1,r2,r3) VALUES('$r1','$r2','$r3')

ตรง SET มันน่าจะใช้กับ UPDATE นะ

ผมคิดว่าคุณน่าจะมี 2 record อยุ่ใน database พอคำสั่งเป็น SET ปุ๊บค่ามันจะเหมือนกันทันทีทั้งหมด
Date : 2009-12-25 15:50:22 By : onizike
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : งงครับพี่น้อง คือแบบนี้นะ พอเวลาผมadd ข้อมูลลงไปนะครับ แล้วมันบันทึกได้
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่