|
|
|
ขอคำแนะนำหน่อยครับ ผมบันทึกข้อมูลไม่ได้ คือต้องการบันทึกรายการสินค้าซึ่งมีประมาณ 300 รายการ แต่บันทึกไม่ได้ |
|
|
|
|
|
|
|
คือต้องการบันทึกรายการสินค้าซึ่งมีประมาณ 300 รายการ แต่บันทึกไม่ได้ แต่ถ้าจำนวนสินค้ามีไม่ถึง 100 รายการสามารถบันทึกได้ ไม่รู้ว่าโค๊ตผิดตรงไหน ขอคำแนะนำด้วยนะครับ
นี้โค๊ต SAVE ครับ
Code
<?php
ob_start();
session_start();
if($_GET["gp"]=="")
{ $gp=" "; }
else
{ $gp="( GP ".$_GET["gp"].")";}
$patern = $_GET["patern"];
$title= $_GET["title"];
$link ="&title=";
$link2 ="&type=e";
$shopname="&shopname=".$_POST["txtPrice1"].$_POST["txtProductName2"];
if($_GET["type"]=="n")
{
$addtype='n' ;
$link2 ="&type=n";
}
else
{
$addtype='e' ;
$link2 ="&type=e";
$addstatus='1';
$addprintdate=date("Y-m-d H:i:s");
}
mysql_connect("localhost","bpworld_root","root");
mysql_select_db("test");
mysql_query("SET NAMES UTF8");
$strSQL1 = "SELECT * FROM user WHERE userid = '".$_SESSION['userid']."' ";
$objQuery1 = mysql_query($strSQL1);
$objResult = mysql_fetch_array($objQuery1);
$getgp = $_POST["gp"];
$Total = 0;
$SumTotal = 0;
for($i=1;$i<=$_POST["hdnLine"];$i++)
if($_POST["txtQty$i"] != "")
{
header("location:product.php?&gp=".$getgp);
}
else
{
ini_set('max_execution_time', 0); //300 seconds = 5 minutes
$strSQL = "
INSERT INTO orders (OrderDate,branch,gp,zone,orderqty,userid,patby,pattype,order_status,print_date,title)
VALUES
('".date("Y-m-d H:i:s")."','".$_POST["txtPrice1"]."','".$_GET["gp"]."','".$_POST["txtzone"]."','".$_POST["totqty"]."','".$_POST["txtuserid"]."','".$objResult["user"]."','".$addtype."','".$addstatus."','".$addprintdate."','".$title."')
";
mysql_query($strSQL) or die(mysql_error());
$strOrderID = mysql_insert_id();
break;}
for($i=1;$i<=$_POST["hdnLine"];$i++)
{
if($_POST["txtQty$i"] != "")
{
echo $_POST["txtQty$i"];
$strSQL = "
INSERT INTO orders_detail (OrderID,ProductID,Qty,price)
VALUES
('".$strOrderID."','".$_POST["txtProductID2$i"]."','".$_POST["txtQty$i"]."','".$_POST["txt2$i"]."')
";
mysql_query($strSQL) or die(mysql_error());
$result = mysql_query("update product set qty = qty - '".$_POST["txtQty$i"]."' where ProductID = '".$_POST["txtProductID2$i"]."'");
}
}
mysql_close();
//session_destroy();
$urlback = $patern.$link.$title.$link2.$shopname;
header("location:finish_paternN.php?&patern=".$urlback);
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2016-06-01 21:13:32 |
By :
sranuwat |
View :
780 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
php_value max_input_vars 3000 ใส่ตรงไหนของโค๊ตครับ
|
|
|
|
|
Date :
2016-06-02 15:04:33 |
By :
sranuwat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
htaccess ครับ
|
|
|
|
|
Date :
2016-06-02 15:32:09 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|