|
|
|
ถ้าต้องการ UPDATE ข้อมูลด้วยการอัพเดดนั้นมีการเพิ่มข้อมูลสินค้าขึ้นมาอีกชิ้นแล้วเซฟข้อมูลสินค้าใหม่เข้ามาด้วน |
|
|
|
|
|
|
|
ถ้าต้องการ UPDATE ข้อมูลด้วยการอัพเดดนั้นมีการเพิ่มข้อมูลสินค้าขึ้นมาอีกชิ้นแล้วเซฟข้อมูลสินค้าใหม่เข้ามาด้วยต้องทำยังไง
ในความคิดผมคือตรวจสอบการอัพเดดสินค้าเก่าและคอยเซฟสินค้าใหม่ ช่วยดูให้หน่อยนะครับ
Code (JavaScript)
<!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>Untitled Document</title>
</head>
<body>
<style>
body{
text-align: center;
font-size: 34px;
padding: 136px;
}
</style>
<?php
include( 'config/connectdb.php' );
$strSQL = "UPDATE p_order SET ";
$strSQL .="p_order_sale_number = '".$_POST["order_sale_number"]."' ";
$strSQL .=",p_order_number = '".$_POST["order_number"]."' ";
$strSQL .=",p_order_customer_name = '".$_POST["order_customer_name"]."' ";
$strSQL .=",p_order_create_date = '".$_POST["order_create_date"]."' ";
$strSQL .=",p_order_project = '".$_POST["order_project"]."' ";
$strSQL .=",p_order_send_date = '".$_POST["order_send_date"]."' ";
$strSQL .=",p_order_send_location = '".$_POST["order_send_location"]."' ";
$strSQL .=",p_order_production_location = '".$_POST["order_production_location"]."' ";
$strSQL .=",p_order_production_emp_id = '".$_POST["p_order_production_emp_id"]."' ";
$strSQL .=",p_order_status = '".$_POST["0"]."' ";
$strSQL .="WHERE p_order_id = '".$_GET['ReportID']."' ";
$objQuery = mysql_query($strSQL);
$error = mysql_error();
if(!$error){
$hiddenlin = $_POST['hidden'];
for($z=1; $z<=$hiddenlin; $z++){
if (!$error){
$str_sql = "SELECT detail_id
FROM order_detail
WHERE detail_order_number = '".$z."'
AND detail_order_id = '".$_GET['ReportID']."' ";
$strSQL = "UPDATE order_detail SET ";
$strSQL .="detail_product_id = '".$_POST["txt_detail_product_id".$z]."' ";
$strSQL .=",detail_sum_weight ='".$_POST["sumweight".$z]."' ";
$strSQL .=",detail_color ='".$_POST["txt_detail_color".$z]."'";
$strSQL .=",detail_bold ='".$_POST["txt_detail_bold".$z]."'";
$strSQL .=",detail_longs1 ='".$_POST["txt_detail_longs1_".$z]."'";
$strSQL .=",detail_longs2 ='".$_POST["txt_detail_longs2_".$z]."'";
$strSQL .=",detail_longs3 ='".$_POST["txt_detail_longs3_".$z]."'";
$strSQL .=",detail_longs4 ='".$_POST["txt_detail_longs4_".$z]."'";
$strSQL .=",detail_longs5 ='".$_POST["txt_detail_longs5_".$z]."'";
$strSQL .=",detail_longs6 ='".$_POST["txt_detail_longs6_".$z]."'";
$strSQL .=",detail_longs7 ='".$_POST["txt_detail_longs7_".$z]."'";
$strSQL .=",detail_amount1 ='".$_POST["txt_detail_amount1_".$z]."'";
$strSQL .=",detail_amount2 ='".$_POST["txt_detail_amount2_".$z]."'";
$strSQL .=",detail_amount3 ='".$_POST["txt_detail_amount3_".$z]."'";
$strSQL .=",detail_amount4 ='".$_POST["txt_detail_amount4_".$z]."'";
$strSQL .=",detail_amount5 ='".$_POST["txt_detail_amount5_".$z]."'";
$strSQL .=",detail_amount6 ='".$_POST["txt_detail_amount6_".$z]."'";
$strSQL .=",detail_amount7 ='".$_POST["txt_detail_amount7_".$z]."'";
$strSQL .=",detail_weight1 ='".$_POST["detail_weight1_".$z]."'";
$strSQL .=",detail_weight2 ='".$_POST["detail_weight2_".$z]."'";
$strSQL .=",detail_weight3 ='".$_POST["detail_weight3_".$z]."'";
$strSQL .=",detail_weight4 ='".$_POST["detail_weight4_".$z]."'";
$strSQL .=",detail_weight5 ='".$_POST["detail_weight5_".$z]."'";
$strSQL .=",detail_weight6 ='".$_POST["detail_weight6_".$z]."'";
$strSQL .=",detail_weight7 ='".$_POST["detail_weight7_".$z]."'";
$strSQL .=",detail_radius1 ='".$_POST["detail_radius1_".$z]."'";
$strSQL .=",detail_radius2 ='".$_POST["detail_radius2_".$z]."'";
$strSQL .=",detail_radius3 ='".$_POST["detail_radius3_".$z]."'";
$strSQL .=",detail_raduis4 ='".$_POST["detail_radius4_".$z]."'";
$strSQL .="WHERE detail_order_number = '".$z."' AND detail_order_id = '".$_GET['ReportID']."' ";
$objQuery = mysql_query($strSQL);
$error = mysql_error();
}else{
$strSQL1 = "INSERT INTO order_detail ";
$strSQL1 .="(detail_order_number,detail_product_id,detail_sum_weight, detail_color,detail_bold,detail_longs1,detail_longs2, detail_longs3,detail_longs4, detail_longs5,detail_longs6, detail_longs7,detail_amount1,detail_amount2,detail_amount3, detail_amount4,detail_amount5,detail_amount6, detail_amount7,detail_weight1,detail_weight2, detail_weight3,detail_weight4, detail_weight5,detail_weight6,detail_weight7,detail_weight8,detail_radius1, detail_radius2,detail_radius3,detail_raduis4) ";
$strSQL1 .="VALUES ";
$strSQL1 .="('".$z."','".$_POST["txt_detail_product_id".$z]."','".$_POST["sumweight".$z]."', '".$_POST["txt_detail_color".$z]."' ,'".$_POST["txt_detail_bold".$z]."' ";
$strSQL1 .=",'".$_POST["txt_detail_longs1_".$z]."','".$_POST["txt_detail_longs2_".$z]."', '".$_POST["txt_detail_longs3_".$z]."', '".$_POST["txt_detail_longs4_".$z]."', '".$_POST["txt_detail_longs5_".$z]."' ,'".$_POST["txt_detail_longs6_".$z]."','".$_POST["txt_detail_longs7_".$z]."' ";
$strSQL1 .=",'".$_POST["txt_detail_amount1_".$z]."','".$_POST["txt_detail_amount2_".$z]."' ,'".$_POST["txt_detail_amount3_".$z]."','".$_POST["txt_detail_amount4_".$z]."' ,'".$_POST["txt_detail_amount5_".$z]."','".$_POST["txt_detail_amount6_".$z]."','".$_POST["txt_detail_amount7_".$z]."' ";
$strSQL1 .=",'".$_POST["detail_weight1_".$z]."' ,'".$_POST["detail_weight2_".$z]."', '".$_POST["detail_weight3_".$z]."','".$_POST["detail_weight4_".$z]."' ,'".$_POST["detail_weight5_".$z]."','".$_POST["detail_weight6_".$z]."' ,'".$_POST["detail_weight7_".$z]."','".$_POST["detail_weight8_".$z]."' ";
$strSQL1 .=",'".$_POST["detail_radius1_".$z]."','".$_POST["detail_radius2_".$z]."' ,'".$_POST["detail_radius3_".$z]." ','".$_POST["detail_radius4_".$z]."') ";
echo "<pre>";
print_r($strSQL1);
echo "</pre>";
}
}
}
/*if($error){
echo "แก้ไขใบสั่งสินค้าไม่สำเร็จ";
echo "<script>setTimeout('history.back()',3000)</script>";//ตั้งเวลาไว้ 3 นาที แล้วกลับไปหน้า edit หรือย้อนกลับ
}else{
echo "แก้ไขใบสั่งสินค้าสำเร็จแล้ว";
header("refresh: 3; url=user_index.php");//ตั้งเวลาไว้ 3 นาที แล้วกลับไปหน้า index
}*/
?>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2015-09-09 14:31:30 |
By :
chaiyan14731 |
View :
815 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี detail_product_id ในตาราง order_detail หรือไม่
มีก็ update ไม่มีก็ insert
|
|
|
|
|
Date :
2015-09-09 16:08:11 |
By :
armdbz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะตรวจสอบ flow control ให้ดีก่อนนะครับ ดูแล้วมันขัดๆ ยังไงไม่ทราบ
แล้วการตรวจสอบ error ของ query ก็เกินจำเป็นครับ
$queryResult = mysql_query($sql);
คำสั่งข้างบน ถ้า error ตัวแปร $queryResult จะเป็นค่า false;
ถ้าไม่ error จะได้ค่า เป็น object ซึ่งถ้าตรวจสอบ ด้วย if( $queryResult) จะให้ค่าเสมือนจริง (true)
ดังนั้น ไม่จำเป็นต้องสร้างตัวแปรมารับ mysql_error(); ใช้ if( $result ) ได้โดยตรง
Code (PHP)
if( $query = mysql_query($sql)){
// do your job
}else{
echo mysql_error();
}
|
|
|
|
|
Date :
2015-09-10 07:31:33 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับทำได้แล้ว
|
|
|
|
|
Date :
2015-09-10 15:54:25 |
By :
chaiyan14731 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|