|
|
|
(มือใหม่) ทำไมถึงแก้ไขข้อมูลใน product_edit.php แล้วข้อมูลไม่เปลี่ยนแปลงครับ |
|
|
|
|
|
|
|
ทำไมถึงแก้ไขข้อมูลใน product_edit.php แล้วข้อมูลไม่เปลี่ยนแปลงครับ ทั้งๆที่เพิ่มสินค้าและลบสินค้าได้ มีอะไรที่ผิดตรงไหนรึปล่าวครับ
Code (PHP)
<?
ob_start();
session_start();
if($_SESSION["adminlogin"]=="")
{
header('location:index.php');
exit();
}
require('../connect/connect.php');
if($_GET["Action"]=="Save")
{
$sql_up = "update product set ProductCode='$_POST[ProductCode]',ProductName='$_POST[ProductName]',Description='$_POST[Description]',Price='$_POST[Price]',PriceNormal='$_POST[PriceNormal]',Stock='$_POST[Stock]',Promotion='$_POST[Promotion]',New='$_POST[New]' where ProductID='$_GET[ProductID]'";
$dbquery_up = mysql_query($sql_up);
$photo=$_FILES['file1']['tmp_name'];
$photo_name=$_FILES['file1']['name'];
$photo_size=$_FILES['file1']['size'];
$photo_type=$_FILES['file1']['type'];
if(!empty($photo)){
$array_last=explode(".",$photo_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]) ;
@copy($photo,"../picture/".$photo_name);
$sql_up = "update product set Picture='$photo_name' where ProductID='$_GET[ProductID]'";
$dbquery_up = mysql_query($sql_up);
}
echo"<script language='JavaScript'>";
echo"alert('แก้ไขข้อมูลเรียบร้อยแล้ว');";
echo"window.location='product_edit.php?ProductID=$_GET[ProductID]';";
echo"</script>";
}
?>
<html>
<title>www.woodthaishop.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="../css/styles.css" type="text/css">
<script language="JavaScript" src="editor.js"></script>
<div align="center"><br>
<?
$sql = "SELECT *FROM product WHERE ProductID='$_GET[ProductID]'";
$re = mysql_query($sql,$conn);
$result = mysql_fetch_array($re);
if(!$result)
{
header("location:product.php");
}
?>
<table cellspacing=1 cellpadding=4 width="68%" bgcolor=#CCCCCC border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="100%" bgcolor="#FFFFFF"> <div align="center"></div>
<table cellspacing=1 cellpadding=4 width="100%" border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="35%" bgcolor="#FFFFFF"> <div align="left"><b>
แก้ไขรายการสินค้า</b></div></td>
<td width="22%" align=middle bgcolor="#FFFFFF"> <div align="left">
</div></td>
<td width="43%" bgcolor="#FFFFFF"> <div align="right"><a href="menu.php?rs=pd">กลับไป</a></div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
</div>
<form name="frm<?=$i;?>" method="post" action="<?=$_SERVER['PHP_SELF'];?>?ProductID=<?=$_GET["ProductID"];?>&Action=Save" enctype="multipart/form-data" onSubmit="return checkvalue()">
<table cellspacing=1 cellpadding=3 width="68%" bgcolor=#CCCCCC border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="31" bgcolor="#FFFFFF">
<script language="JavaScript">
function checkvalue()
</script>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td width="18%"> </td>
<td width="82%"> </td>
</tr>
<tr>
</tr>
<tr>
<td valign="top">ชื่อสินค้า <font color="#FF0000">** </font></td>
<td><input name="ProductName" type="text" class="box" id="ProductName" style="width:550" value="<?=$result["ProductName"];?>" maxlength="100"></td>
</tr>
<tr>
<td valign="top">ราคา <font color="#FF0000">** </font></td>
<td><input name="Price" type="text" class="box" id="Price" value="<?=$result["Price"];?>" size="10" maxlength="20">
บาท </td>
</tr>
<tr>
<td valign="top">รูปภาพ <font color="#FF0000">** </font></td>
<td><img src="../picture/<?=$result["Picture"];?>" /></td>
</tr>
<tr>
<td valign="top"> </td>
<td><input name="file1" type="file" class="box" id="file1"></td>
</tr>
<tr>
<td valign="top">รายละเอียด <font color="#FF0000">** </font></td>
<td>
<?php include_once "script.php";?>
<textarea name="Description" cols="40" rows="10" class="box" id="Description" style="width:350; height:450"><?=$result["Description"];?></textarea>
</td>
</tr>
<tr>
<td> </td>
<td><input name="Submit" type="submit" class="button" value="บันทึก">
<input name="Cancel" type="button" class="button" id="Cancel" value="ยกเลิก" onClick="window.location='product.php?CatID=<?=$result["CatID"];?>';"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
</tbody>
</table>
<table cellspacing=0 cellpadding=4 width="68%" bgcolor=#CCCCCC border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="100%" bgcolor="#FFFFFF"> <div align="center"></div>
<table cellspacing=1 cellpadding=4 width="100%" border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="35%" bgcolor="#FFFFFF"> <div align="left"></div></td>
<td width="22%" align=middle bgcolor="#FFFFFF"> <div align="left">
</div></td>
<td width="43%" bgcolor="#FFFFFF"> <div align="right"><a href="product.php?CatID=<?=$result["CatID"];?>">กลับไป</a></div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
</form>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-09-03 14:33:08 |
By :
skulds |
View :
1049 |
Reply :
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้วิธีไล่ระบบดูครับ อันดับแรกยกเครื่องเอาข้างในทั้งหมดออกก่อน(เอาบรรทัดที่ 13-38 ออกไปเลย) เพื่อจะพิจารณาว่า ฉันทำผิดอะไร
1. ตรวจว่ารับรู้เมื่อคลิก save เข้ามาหรือไม่
Code (PHP)
if($_GET["Action"]=="Save")
{
echo "รับรู้แล้วว่ามีการ SAVE";
}
2.ถ้าขั้น1 ผ่านแล้วลบขั้นตอนที่ 1 ออกและขำขั้นตอนที่ 2 ไปตรวจสอบตรวจการรับค่า GET POST
Code (PHP)
if($_GET["Action"]=="Save")
{
echo "$_POST[ProductCode]";
echo "$_POST[ProductName]";
echo "$_POST[Description]";
echo "$_POST[Price]";
echo "$_POST[PriceNormal]";
echo "$_POST[Stock]";
echo "$_POST[Promotion]";
echo "$_POST[New]";
echo "$_GET[ProductID]";
}
3. ถ้าขั้นตอนที่ 2 ผ่านแล้ว คือรับรู้ค่าที่ส่งมา แสดงว่าโค้ด SQL เราผิดครับต้องไปตรวจสอบรูปแบบการคิวรี่ว่าการชี้เป้า where มันใช้ได้หรือไม่ รุปแบบการเขียนถูกจริงหรือไม่
|
|
|
|
|
Date :
2013-09-03 15:14:02 |
By :
meannerss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้าวนี่ไงเจอแล้ว คุณส่ง
Code (PHP)
f($_GET["Action"]=="Save")
แต่ในขั้นตอนการรับค่าคุณเรียกใช้ $_POST มันไม่ถูกครับค่าของกล่องต่างๆที่กรอกจะมากับ $_GET ไมไ่ด้ ถ้าอากให้มาต้อง
ใช้ปุ่ม SUBMIT ซึ่งจะเป็นการส่งแบบ$_POST ค่าต่างๆถึงจะมาครับ
|
|
|
|
|
Date :
2013-09-03 15:18:02 |
By :
meannerss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใส่ alert(); ตามที่คุณ Yam กล่าวมาก่อนครับ แค่ดูว่าคลิกแล้วอยู่ในเงื่อนไขหรือไม่ ถ้าอยู่ในเงื่อนไขลอง echo ตัวแปรที่ส่งมาจาก textbox ว่าค่า textbox ที่อ้างถึงนั้นได้ส่งมาทุกค่าหรือเปล่า
|
|
|
|
|
Date :
2013-09-03 17:08:22 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรทัดที่ 17 ขอดู error ครับ
Code (PHP)
$dbquery_up = mysql_query($sql_up) or die (mysql_error());
|
|
|
|
|
Date :
2013-09-03 17:31:46 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะได้เห็นคำสั่ง SQL ที่ผิดด้วยค่ะว่าผิดอย่างไร
$dbquery_up = mysql_query($sql_up) or die (mysql_error()."[ $sql_up ]");
|
|
|
|
|
Date :
2013-09-03 17:44:53 |
By :
survivor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|