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

HOME > PHP > PHP Forum > ข้อความช่วยเหลือ php Update ข้อมูลในหน้าเดียวกันทีละหลายๆ record



 

ข้อความช่วยเหลือ php Update ข้อมูลในหน้าเดียวกันทีละหลายๆ record

 



Topic : 115448



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



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




Update ข้อมูลในหน้าเดียวกันทีละหลายๆ record ทำตามและแก้ตาม code แล้ว พอจะส่งข้อมูลแต่ไม่ save ให้ครับ
ต้องการ save เฉพาะ 1.1-1.6.......................

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>test--------------------------------------</title>
</head>
<body>

<?
$objConnect = mysql_connect("localhost","xxxx","xxxx") or die("Error Connect to Database");
$objDB = mysql_select_db("xxxxx");
mysql_query("SET NAMES UTF8");

//*** Update Condition ***//
if($_GET["Action"] == "Save")
{
	for($i=1;$i<=$_POST["hdnLine"];$i++)
	{
		$strSQL = "UPDATE sar1 SET ";
        $strSQL .="id = '".$_POST["txtid$i"]."' ";
		$strSQL .=",class = '".$_POST["txtclass$i"]."' ";
        $strSQL .=",room = '".$_POST["txtroom$i"]."' ";
        $strSQL .=",no = '".$_POST["txtno$i"]."' ";
        $strSQL .=",fn = '".$_POST["txtfn$i"]."' ";
        $strSQL .=",name = '".$_POST["txtname$i"]."' ";
        $strSQL .=",sur = '".$_POST["txtsur$i"]."' ";
        $strSQL .=",1.1 = '".$_POST["txt1.1$i"]."' ";	        
		$strSQL .=",1.2 = '".$_POST["txt1.2$i"]."' ";		
		$strSQL .=",1.3 = '".$_POST["txt1.3$i"]."' ";	
        $strSQL .=",1.4 = '".$_POST["txt1.4$i"]."' ";	        
		$strSQL .=",1.5 = '".$_POST["txt1.5$i"]."' ";		
		$strSQL .=",1.6 = '".$_POST["txt1.6$i"]."' ";			
		
		
 		$strSQL .="WHERE id = '".$_POST["hdnid$i"]."' ";
		$objQuery = mysql_query($strSQL);
	}
	//header("location:$_SERVER[PHP_SELF]");
	//exit();
}

$strSQL = "SELECT * FROM sar1 where class='1' and room='1'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");

?>

<form name="frmMain" method="post" action="sar57.php?Action=Save">
<table width="1298" border="1" cellpadding="0" cellspacing="0">
  <tr>
    <th width="58"> <div align="center">ชั้น</div></th>
    <th width="44"> <div align="center">ห้อง</div></th>
    <th width="38"> <div align="center">รหัส</div></th>
    <th width="130"> <div align="center">ชื่อ</div></th>
    <th width="129"> <div align="center">สกุล </div></th>
    <th width="15"> <div align="center">1.1 </div></th>
    <th width="15">1.2</th>
    <th width="15">1.3</th>
    <th width="15">1.4</th>
    <th width="15">1.5</th>
    <th width="15">1.6</th>
    <th width="15">2.1</th>
    <th width="15">2.2</th>
    <th width="15">2.3</th>
    <th width="15">2.4</th>
    <th width="15">2.5</th>
    <th width="15">3.1</th>
    <th width="15">3.1</th>
    <th width="15">3.3</th>
    <th width="15">3.4</th>
    <th width="15">3.5</th>
    <th width="15">4.1</th>
    <th width="15">4.2</th>
    <th width="15">4.3</th>
    <th width="15">4.4</th>
    <th width="15">4.5</th>
    <th width="15">5.1</th>
    <th width="15">5.1</th>
    <th width="15">5.3</th>
    <th width="15">5.4</th>
    <th width="15">5.5</th>
    <th width="15">6.1</th>
    <th width="15">6.1</th>
    <th width="15">6.3</th>
    <th width="15">6.6</th>
    <th width="15">6.5</th>
    <th width="15">6.6</th>
  </tr>
<?
$i =0;
while($objResult = mysql_fetch_array($objQuery))
{
	$i = $i + 1;
?>
  <tr>
    <td><div align="center">
    <input type="hidden" name="hdnid<?php echo $i;?>" size="5" value="<?php echo $objResult["id"];?>">
      <?php echo $objResult["class"];?> </div></td>
    <td><div align="center"><?php echo $objResult["room"];?></div></td>
    <td><div align="center"><?php echo $objResult["id"];?></div></td>
    <td><div align="left"><?php echo $objResult["name"];?></div></td>
    <td align="right"><div align="left"><?php echo $objResult["sur"];?></div></td>
    <td width="15" align="right"><input type="text" name="txt1.1<?php echo $i;?>" size="2" value="<?php echo $objResult["1.1"];?>" /></td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
    <td width="15" align="right">&nbsp;</td>
  </tr>
<?php
}
?>
</table>
  <input type="submit" name="submit" value="submit">
  <input type="hidden" name="hdnLine" value="<?php echo $i;?>">
</form>
<?php
mysql_close($objConnect);
?>
</body>
</html>




Tag : PHP, MySQL









ประวัติการแก้ไข
2015-03-27 08:35:50
2015-03-27 09:04:29
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2015-03-27 08:14:42 By : webmath View : 849 Reply : 5
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

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

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

Code (PHP)
echo $strSQL."<br><br>";
$objQuery = mysql_query($strSQL);


เอาค่ามาดูหน่อยครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-27 10:25:19 By : mr.win
 


 

No. 2



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



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


ตารางประมาณนี้ครับ

photo

เคยเรียนรู้ที่ https://www.thaicreate.com/ มีเกือบ 10 ปี ที่แล้ว พึงกลับมาทำอีกครั้ง งงเลยครับ


ประวัติการแก้ไข
2015-03-27 11:45:06
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-27 11:44:42 By : webmath
 

 

No. 3



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



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


รอ....
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-28 15:07:13 By : webmath
 


 

No. 4



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

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

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

หมายถึง Query ตอนที่ Update ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-29 07:05:26 By : mr.win
 


 

No. 5

Guest


เห่อๆ....ตั้งชื่อ field ได้น่า error ดีครับ
ลองแบบนี้ครับ

Code
$strSQL .=",`1.1`= '".$_POST["txt1.1$i"]."' ";

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-29 18:39:53 By : ผ่านมา
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ข้อความช่วยเหลือ php Update ข้อมูลในหน้าเดียวกันทีละหลายๆ record
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่