ข้อความช่วยเหลือ php Update ข้อมูลในหน้าเดียวกันทีละหลายๆ record
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"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </td>
<td width="15" align="right"> </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
Date :
2015-03-27 08:14:42
By :
webmath
View :
849
Reply :
5
Code (PHP)
echo $strSQL."<br><br>";
$objQuery = mysql_query($strSQL);
เอาค่ามาดูหน่อยครับ
Date :
2015-03-27 10:25:19
By :
mr.win
ตารางประมาณนี้ครับ
เคยเรียนรู้ที่ https://www.thaicreate.com/ มีเกือบ 10 ปี ที่แล้ว พึงกลับมาทำอีกครั้ง งงเลยครับ
ประวัติการแก้ไข 2015-03-27 11:45:06
Date :
2015-03-27 11:44:42
By :
webmath
รอ....
Date :
2015-03-28 15:07:13
By :
webmath
หมายถึง Query ตอนที่ Update ครับ
Date :
2015-03-29 07:05:26
By :
mr.win
Load balance : Server 02