edit ข้อมูลไม่ได้ ข้อมูลไม่ขึ้น อิดิทแล้วเออเร่อช่วยดูโค๊ดทีค่ะ
อันนี้เป็นโค๊ดค่ะ
ทำผิดตรงไหนรึป่าวคะ พอตอนกดแก้ไขแล้วมันไปดึงข้อมูลมาไม่ตรงกันอะค่ะ
มันไปดึง userID อันที่เราต้องการมาแต่ ข้อมูลฟิลด์ อื่นเป็นของอันอื่นทั้งหมดเลย
มีทางแก้ไหมคะผิดตรงไหน
Code
<html>
<head>
<title></title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
$strSQL = "UPDATE tb_account SET ";
$strSQL .="userID = '".$_POST["txtuserID"]."' ";
$strSQL .=",username = '".$_POST["txtusername"]."' ";
$strSQL .=",password = '".$_POST["txtpassword"]."' ";
$strSQL .=",email = '".$_POST["txtemail"]."' ";
$strSQL .=",prefix = '".$_POST["txtprefix"]."' ";
$strSQL .=",thaifirstname = '".$_POST["txtthaifirstname"]."' ";
$strSQL .=",thailastname = '".$_POST["txtthailastname"]."' ";
$strSQL .=",nationlity = '".$_POST["txtnationlity"]."' ";
$strSQL .=",race = '".$_POST["txtrace"]."' ";
$strSQL .=",birth = '".$_POST["txtbirth"]."' ";
$strSQL .=",gender = '".$_POST["txtgender"]."' ";
$strSQL .=",address = '".$_POST["txtaddress"]."' ";
$strSQL .=",city = '".$_POST["txtcity"]."' ";
$strSQL .=",province = '".$_POST["txtprovince"]."' ";
$strSQL .=",postcode = '".$_POST["txtpostcode"]."' ";
$strSQL .=",telephone = '".$_POST["txttelephone"]."' ";
$strSQL .=",mobile = '".$_POST["txtmobile"]."' ";
$strSQL .=",fax = '".$_POST["txtfax"]."' ";
$strSQL .=",status = '".$_POST["ddlstatus"]."' ";
$strSQL .=",SID = '".$_POST["txtSID"]."' ";
$strSQL .=",active = '".$_POST["ddlactive"]."' ";
$strSQL .="WHERE userID = '".$_GET["UseID"]."' ";
$objQuery = mysql_query($strSQL);
$strSQL2 = "UPDATE tb_admin SET ";
$strSQL2 .="adposition = '".$_POST["txtadposition"]."' ";
$strSQL2 .=",addepartment = '".$_POST["txtaddepartment"]."' ";
$strSQL2 .=",userID = '".$_POST["txtuserID"]."' ";
$strSQL2 .="WHERE userID = '".$_GET["UseID"]."' ";
$objQuery2 = mysql_query($strSQL);
if($objQuery)
{
echo "<center>Save Done.</center>";
}
else
{
echo "<center>Error Save [".$strSQL."]</center>";
}
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP
Date :
2012-05-04 21:39:33
By :
kutjung
View :
1723
Reply :
5
ยังไม่ได้อะค่ะ
อันนี้เป็นโค๊ดหน้าฟอม
Code
<html>
<head>
<title></title>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
</head>
<body>
<form action="saveeditadmin.php?UseID=<?=$_GET["userID"];?>" name="frmEdit" method="post">
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
$charset = "SET character_set_results=utf8";
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strSQL ="SELECT tb_account. * , tb_admin. *
FROM tb_account, tb_admin
WHERE tb_account.userID = tb_admin.userID = '".$_GET["userID"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not found userID=".$_GET["userID"];
}
else
{
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">รหัสบัตรประชาชน </div></th>
<th width="91"> <div align="center">ชื่อผู้ใช้</div></th>
<th width="91"> <div align="center">รหัสผ่าน</div></th>
<th width="97"> <div align="center">อีเมล </div></th>
<th width="98"> <div align="center">คำนำหน้า</div></th>
<th width="98"> <div align="center">ชื่อ</div></th>
<th width="198"> <div align="center">นามสกุล </div></th>
<th width="98"> <div align="center">เชื้อชาติ</div></th>
<th width="198"> <div align="center">สัญชาติ</div></th>
<th width="97"> <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> <div align="center">จังหวัด</div></th>
<th> <div align="center">รหัสไปรษณีย์</div></th>
<th> <div align="center">หมายเลขโทรศัพท์</div></th>
<th> <div align="center">หมายเลขโทรศัพท์มือถือ</div></th>
<th> <div align="center">แฟกซ์</div></th>
<th> <div align="center">สถานะ</div></th>
<th> <div align="center">SID</div></th>
<th> <div align="center">แอคทีฟ</div></th>
<th> <div align="center">ตำแหน่ง</div></th>
<th> <div align="center">หน่วยงาน</div></th>
<th width="91"> <div align="center">รหัสบัตรประชาชน </div></th>
</tr>
<tr>
<td><input type="text" name="txtuserID" value="<?=$objResult["userID"];?>"></td>
<td><input type="text" name="txtusername" value="<?=$objResult["username"];?>"></td>
<td><input type="text" name="txtpassword" value="<?=$objResult["password"];?>"></td>
<td><input type="text" name="txtemail" value="<?=$objResult["email"];?>"></td>
<td><input type="text" name="txtprefix" value="<?=$objResult["prefix"];?>"></td>
<td><input type="text" name="txtfirstname" value="<?=$objResult["thaifirstname"];?>"></td>
<td><input type="text" name="txtlastname" value="<?=$objResult["thailastname"];?>"></td>
<td><input type="text" name="txtnationnality" value="<?=$objResult["nationnality"];?>"></td>
<td><input type="text" name="txtrace" value="<?=$objResult["race"];?>"></td>
<td><input type="text" name="txtbirth" value="<?=$objResult["birth"];?>"></td>
<td><input type="text" name="txtgender" value="<?=$objResult["gender"];?>"></td>
<td><input type="text" name="txtaddress" value="<?=$objResult["address"];?>"></td>
<td><input type="text" name="txtcity" value="<?=$objResult["city"];?>"></td>
<td><input type="text" name="txtprovince" value="<?=$objResult["province"];?>"></td>
<td><input type="text" name="txtpostcode" value="<?=$objResult["postcode"];?>"></td>
<td><input type="text" name="txttelephone" value="<?=$objResult["telephone"];?>"></td>
<td><input type="text" name="txtmobile" value="<?=$objResult["mobile"];?>"></td>
<td><input type="text" name="txtfax" value="<?=$objResult["fax"];?>"></td>
<td><input type="text" name="txtstatus" value="<?=$objResult["status"];?>"></td>
<td><input type="text" name="txtSID" value="<?=$objResult["SID"];?>"></td>
<td><input type="text" name="txtactive" value="<?=$objResult["active"];?>"></td>
<td><input type="text" name="txtadposition" value="<?=$objResult["adposition"];?>"></td>
<td><input type="text" name="txtaddepartment" value="<?=$objResult["addepartment"];?>"></td>
<td><input type="text" name="txtuserID" value="<?=$objResult["userID"];?>"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
<?
}
mysql_close($objConnect);
?>
</form>
</body>
</html>
อันนี้โค๊ํดหน้าเซฟค่ะ
Code
<html>
<head>
<title></title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
$strSQL = "UPDATE tb_account SET ";
$strSQL .="userID = '".$_POST["txtuserID"]."' ";
$strSQL .=",username = '".$_POST["txtusername"]."' ";
$strSQL .=",password = '".$_POST["txtpassword"]."' ";
$strSQL .=",email = '".$_POST["txtemail"]."' ";
$strSQL .=",prefix = '".$_POST["txtprefix"]."' ";
$strSQL .=",thaifirstname = '".$_POST["txtthaifirstname"]."' ";
$strSQL .=",thailastname = '".$_POST["txtthailastname"]."' ";
$strSQL .=",nationality = '".$_POST["txtnationality"]."' ";
$strSQL .=",race = '".$_POST["txtrace"]."' ";
$strSQL .=",birth = '".$_POST["txtbirth"]."' ";
$strSQL .=",gender = '".$_POST["txtgender"]."' ";
$strSQL .=",address = '".$_POST["txtaddress"]."' ";
$strSQL .=",city = '".$_POST["txtcity"]."' ";
$strSQL .=",province = '".$_POST["txtprovince"]."' ";
$strSQL .=",postcode = '".$_POST["txtpostcode"]."' ";
$strSQL .=",telephone = '".$_POST["txttelephone"]."' ";
$strSQL .=",mobile = '".$_POST["txtmobile"]."' ";
$strSQL .=",fax = '".$_POST["txtfax"]."' ";
$strSQL .=",status = '".$_POST["ddlstatus"]."' ";
$strSQL .=",SID = '".$_POST["txtSID"]."' ";
$strSQL .=",active = '".$_POST["ddlactive"]."' ";
$strSQL .="WHERE userID = '".$_GET["UseID"]."' ";
$objQuery = mysql_query($strSQL) or die(mysql_error());
$strSQL2 = "UPDATE tb_admin SET ";
$strSQL2 .="adposition = '".$_POST["txtadposition"]."' ";
$strSQL2 .=",addepartment = '".$_POST["txtaddepartment"]."' ";
$strSQL2 .=",userID = '".$_POST["txtuserID"]."' ";
$strSQL2 .="WHERE userID = '".$_GET["UseID"]."' ";
$objQuery2 = mysql_query($strSQL2) or die(mysql_error());
if($objQuery)
{
echo "<center>Save Done.</center>";
}
else
{
echo "<center>Error Save [".$strSQL."]</center>";
}
mysql_close($objConnect);
?>
</body>
</html>
ที่ออกมาคือ
userID เป็นของ user นึง แต่ ข้อมูลทั้งหมด เป็นของอีก user นึง เช่น userID 1234567891011 ชื่อ นางสาว เรียนดี
แต่จริงๆ แล้ว มันจะต้องเป็น 1234567891011 นาย ดูแลระบบ
เพราะของอันแรกจะเป็น userID 1234567891088
พอกด save ไม่มีเออเร่อใดๆ ขึ้น และ ข้อมูลไม่ลงดาต้าเบสค่ะ
ช่วยดูทีนะคะ ผิดตรงไหน พยายามหาแล้วไม่เจออะค่ะ
Date :
2012-05-05 10:47:20
By :
kutjung
ลองเปลี่ยนจาก GET เป็น REQUEST ดูครับ เปลี่ยนทั้ง ขาส่ง และ ขารับ นะครับ
หรือ ไม่ก็ลอง WHERE userID = '".$_GET["UseID"]."' "; -->> WHERE userID = '".$_POST["txtuserID"]."' ";
ลองดูครับ
ประวัติการแก้ไข 2012-05-05 18:09:59
Date :
2012-05-05 18:09:25
By :
kamuro
ยังไม่ได้อะค่ะ เหมือนเดิม คืออันนี้เป็น ตั้งไว้ว่าให้แก้ไขข้อมูลของ แอดมินทั้งหมดได้ นักศึกษา บุคคลทั่วไป
ในส่วนนี้จะแก้ไขข้อมูลของแอดมินทั้งหมด โดยที่ แอดมินมีหลายคน และ แอดมินคนหนึ่งล๊อกอินเข้าไปแก้ไข คือ userID 1234567891011
แต่ ตอนนี้ทำออกมากลายเป็นว่า userID เองเป็น 1234567891011 แต่ข้อมูล เป็นของนักศึกษา ซึ่งไม่เกี่ยวกัน
เพราะ กำหนดว่า
SELECT tb_account. * , tb_admin. *
FROM tb_account, tb_admin
WHERE tb_account.userID = tb_admin.userID
แต่พอทำออกมา ดันไปหยิบข้อมูลของนักศึกษามา แต่เป็น userID ของแอดมิน
และในส่วนของ $strSQL2 เห็นเป็น ข้อมูลของแอดมินที่ userID 1234567891011 ปกติค่ะ
แต่ในส่วนของตาราง tb_account เห็นเป็นของคนอื่น
แก้ตรงไหนดีคะ
Date :
2012-05-05 20:26:37
By :
kutjung
Code (PHP)
<html>
<head>
<title></title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
$strSQL = "UPDATE tb_account SET ";
$strSQL .="userID = '".$_POST["txtuserID"]."' ";
$strSQL .=",username = '".$_POST["txtusername"]."' ";
$strSQL .=",password = '".$_POST["txtpassword"]."' ";
$strSQL .=",email = '".$_POST["txtemail"]."' ";
$strSQL .=",prefix = '".$_POST["txtprefix"]."' ";
$strSQL .=",thaifirstname = '".$_POST["txtthaifirstname"]."' ";
$strSQL .=",nationlity = '".$_POST["txtnationlity"]."' ";
$strSQL .=",race = '".$_POST["txtrace"]."' ";
$strSQL .=",birth = '".$_POST["txtbirth"]."' ";
$strSQL .=",gender = '".$_POST["txtgender"]."' ";
$strSQL .=",address = '".$_POST["txtaddress"]."' ";
$strSQL .=",city = '".$_POST["txtcity"]."' ";
$strSQL .=",province = '".$_POST["txtprovince"]."' ";
$strSQL .=",postcode = '".$_POST["txtpostcode"]."' ";
$strSQL .=",telephone = '".$_POST["txttelephone"]."' ";
$strSQL .=",mobile = '".$_POST["txtmobile"]."' ";
$strSQL .=",fax = '".$_POST["txtfax"]."' ";
$strSQL .=",status = '".$_POST["ddlstatus"]."' ";
$strSQL .=",SID = '".$_POST["txtSID"]."' ";
$strSQL .=",active = '".$_POST["ddlactive"]."' ";
$strSQL .="WHERE userID = '".$_GET["UseID"]."' ";
$objQuery = mysql_query($strSQL) or die("ไม่สามารถแก้ไขข้อมูลลง DB ได้");
$strSQL2 = "UPDATE tb_admin SET ";
$strSQL2 .="adposition = '".$_POST["txtadposition"]."' ";
$strSQL2 .=",addepartment = '".$_POST["txtaddepartment"]."' ";
$strSQL2 .=",userID = '".$_POST["txtuserID"]."' ";
$strSQL2 .="WHERE userID = '".$_GET["UseID"]."' ";
$objQuery2 = mysql_query($strSQL2 ) or die("ไม่สามารถแก้ไขข้อมูลลง DB ได้");
mysql_close($objConnect);
?>
</body>
</html>
ผมลบสามที่ครับ
$strSQL .=",thaifirstname = '".$_POST["txtthaifirstname"]."' "; ซ้ำกัน
-----
$objQuery2 = mysql_query($strSQL); เปลี่ยนเป็น $objQuery2 = mysql_query($strSQL2 );
-----
if($objQuery)
{
echo "<center>Save Done.</center>";
}
else
{
echo "<center>Error Save [".$strSQL."]</center>";
}
แล้วก็เพิ่ม
$objQuery2 = mysql_query($strSQL2 ) or die("ไม่สามารถแก้ไขข้อมูลลง DB ได้");
----
$objQuery = mysql_query($strSQL) or die("ไม่สามารถแก้ไขข้อมูลลง DB ได้");
** ถ้ายังไม่ได้ลองดูว่า ฟิลด์ใน Table นั้นคุณเก็บเป็นประเภทไหนอีกทีนะครับ
ประวัติการแก้ไข 2012-05-07 10:12:24
Date :
2012-05-07 10:09:58
By :
keng_ds
Load balance : Server 01