|
|
|
ผมไม่เข้าใจว่า ทำไมไม่สามารถบันทึกลงฐานข้อมูลได้ครับ |
|
|
|
|
|
|
|
Code (PHP)
<?
require"../../www/config/conect_L.php";
$objConnect = mysql_connect("$host","$user","$Pass") or die("Error Connect to Database");
mysql_query("set NAMES'UTF8'");
$objDB = mysql_select_db("$dbprimer");
if($_GET["Action"] == "Save")
{
for($i=1;$i<=$_POST["hdnLine"];$i++)
{
$strSQL = "UPDATE $tbaccount SET ";
$strSQL .=",Id_re = '".$_POST["txtId_re$i"]."' ";
$strSQL .=",Name = '".$_POST["txtName$i"]."' ";
$strSQL .=",First = '".$_POST["txtFirst$i"]."' ";
$strSQL .=",Position = '".$_POST["txtPosition$i"]."' ";
$strSQL .=",Address = '".$_POST["txtAddress$i"]."' ";
$strSQL .=",Email = '".$_POST["txtEmail$i"]."' ";
$strSQL .=",Tel = '".$_POST["txtTel$i"]."' ";
$strSQL .=",Date_account = '".$_POST["txtDate_account$i"]."' ";
$strSQL .=",Status = '".$_POST["txtStatus$i"]."' ";
$strSQL .="WHERE Id_re = '".$_POST["hdnId_re$i"]."' ";
echo"$strSQL";
$objQuery = mysql_query($strSQL);
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
$strSQL = "SELECT * FROM $tbaccount WHERE Status ='0'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<form name="frmMain" method="post" action="list_auto.php?Action=Save">
<img src="icon/32x32/order.png"><font color="#006600" size="2"><b>ตารางผู้ที่พึ่งลงทะเบียน ซึ่งอยู่ในถานะการรอการอนุมัติให้เข้าใช้ Stock Primer</b></font>
<table width="900" border="1" background="images/111.jpg" id="rounded-corner">
<tr>
<th width="100">สถานะ</th>
<th width="80">รหัสคำขอ</th>
<th width="150">ชื่อที่ใช้เรียก</th>
<th width="200">ชื่อ-สกุล</th>
<th width="100">ตำแหน่ง</th>
<th width="200">ที่อยู่</th>
<th width="100">Email</th>
<th width="150">เบอร์โทร</th>
<th width="150">เวลาที่ลงทะเบียน</th>
</tr>
<?
$i =0;
while($objResult = mysql_fetch_array($objQuery))
{
$i = $i + 1;
$Id_re=$objResult['Id_re'];
$Name=$objResult['Name'];
$First=$objResult['First'];
$Position=$objResult['Position'];
$Address=$objResult['Address'];
$Email=$objResult['Email'];
$Tel=$objResult['Tel'];
$Date_account=$objResult['Date_account'];
$Status=$objResult['Status'];
?>
<tr><td><input type="checkbox" name="txtStatus<?=$i;?>" size="5" value="1"></td>
<td><div align="center">
<input type="hidden" name="hdnId_re<?=$i;?>" size="5" value="<?=$objResult["Id_re"];?>">
<?=$objResult["Id_re"];?></div></td>
<td><input type="hidden" name="txtName<?=$i;?>" size="5" value="<?=$objResult["Name"];?>"><?=$objResult["Name"];?></td>
<td><input type="hidden" name="txtFirst<?=$i;?>" size="20" value="<?=$objResult["First"];?>"><?=$objResult["First"];?></td>
<td><input type="hidden" name="txtPosition<?=$i;?>" size="20" value="<?=$objResult["Position"];?>"><?=$objResult["Position"];?></td>
<td><input type="hidden" name="txtAddress<?=$i;?>" size="20" value="<?=$objResult["Address"];?>"><?=$objResult["Address"];?></td>
<td><input type="hidden" name="txtEmail<?=$i;?>" size="20" value="<?=$objResult["Email"];?>"><?=$objResult["Email"];?></td>
<td><div align="center"><input type="hidden" name="txtTel<?=$i;?>" size="10" value="<?=$objResult["Tel"];?>"><?=$objResult["Tel"];?></div></td>
<td><input type="hidden" name="txtDate_account<?=$i;?>" size="9" value="<?=$objResult["Date_account"];?>"><?=$objResult["Date_account"];?></td>
</tr>
<?
}
?>
</table>
<input type="submit" name="submit" value="submit">
<input type="hidden" name="hdnLine" value="<?=$i;?>">
</form>
<?
mysql_close($objConnect);
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-17 10:52:59 |
By :
SOUL |
View :
801 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยน
if($_GET["Action"] == "Save")
เป็น
if($_POST["Action"] == "Save")
|
|
|
|
|
Date :
2010-06-17 11:10:52 |
By :
jeabz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL .=",Id_re = '".$_POST["txtId_re$i"]."' "; << ตัวแรกไม่ต้องมี , มั้งครับ ลบออก
๊UPDATE $tbaccount SET Id_re
|
|
|
|
|
Date :
2010-06-17 11:20:03 |
By :
ความรู้เท่าหางอึ่ง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณมากครับ
|
|
|
|
|
Date :
2010-06-17 11:34:17 |
By :
SOUL |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|