|
|
|
ช่วยดูทีครับ multiple insert ไม่มีค่าออกมาเลย ผมงมมาหลายวันมากกก พี่ๆช่วยผมดูและแนะนำหน่อยนะครับ ว่าต้องแก้ไขตรงไหนยังไง |
|
|
|
|
|
|
|
อันนี้หน้าฟอร์มรับค่า
<?
$sqlpro = "SELECT * FROM product INNER JOIN category on product.Cat_id=category.Cat_id WHERE Pd_count < 10 ORDER BY Pd_count ASC ";
$resultpro=mysqli_query($conn,$sqlpro);
$numrowspro=mysqli_num_rows($resultpro);
for($i=1;$i<=$numrowspro;$i++) {
$rspro=mysqli_fetch_array($resultpro);
?>
<tr height="25" align="center">
<td><? echo $i;?></td>
<td align="center"><?php echo $rspro["Cat_type"];?></td>
<td align="center"><?php echo $rspro["Pd_code"];?></td>
<td align="left"> <? echo $rspro[Pd_name];?></td>
<td align="center"><? echo $rspro[Pd_count];?></td>
<td align="center"><input name="strQty<? echo $i;?>" id="strQty_<? echo $i;?>" class="total_id" type="text" size="15" style="text-align:center;" OnKeyPress="return chkNumber(this)"></td>
<td align="center"><input name="strPrice<? echo $i;?>" id="strPrice_<? echo $i;?>" class="total_id2" type="text" size="15" style="text-align:center;" value="<?php echo $rspro["Price"];?>" OnKeyPress="return chkNumber(this)"></td>
</tr>
<input type="hidden" name="strProductID<? echo $i;?>" value="<? echo $rspro["Pd_code"];?>">
<input type="hidden" name="hdnLine" value="<? echo $i;?>">
<? }//end for?>
</table><br>
<table width="990" border="0" cellspacing="0" align="center">
<tr align="center">
<td>
<input type="reset" name="reset" id="reset" value="รีเซ็ต" >
<input type="submit" name="button" id="button" value="สั่งซือสินค้า" class="button" onclick="return confirm('คุณแน่ใจแล้วว่าต้องการเพิ่มข้อมูลการสั่งสินค้าเข้าร้าน')">
</td>
</tr>
</table>
</form>
อันนี้ ตัว save
<?php
session_start();
include ("../../config/chksession.php");
$Total = 0;
$SumTotal = 0;
$id = $objResult["Ad_id"];;
$name = $objResult["Ad_name"];;
$strSQL = "
INSERT INTO counts (Ad_id,Ad_name)
VALUES
('".$id."','".$name."')
";
mysqli_query($conn,$strSQL) or die(mysqli_error());
$strOrderID = mysqli_insert_id($conn);
$SumTotal = 0;
for($i=0;$i<=$_POST["hdnLine"];$i++)
{
if($_POST["pd_id"][$i] != "")
{
$Total1 = $_POST["strQty"][$i] * $_POST["strPrice"][$i];
$strSQL1 = "
INSERT INTO count_detail (Count_id,Cnt_dtl_product_id,Cnt_dtl_price,Cnt_dtl_count,Cnt_dtl_status,Cnt_sum_total)
VALUES
('".$strOrderID."','".$_POST["strProductID"][$i]."','".$_POST["strPrice"][$i]."','".$_POST["strQty"][$i]."','".$_POST["txtCnt_id"]."','".$Total1."')
";
mysqli_query($conn,$strSQL1) or die(mysqli_error());
}
}
mysqli_close($conn);
echo "$strSQL";
echo "$strSQL1";
echo "$Total1";
//header("location:search_import.php");
?>
Tag : PHP
|
|
|
|
|
|
Date :
2018-08-02 22:07:24 |
By :
1823049921111595 |
View :
557 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?
<?php
|
|
|
|
|
Date :
2018-08-02 23:40:59 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|