|
|
|
ช่วยแนะนำวิธีการเพิ่มสินค้า ในฟอร์มเดียวกัน ใครพอทราบบ้างไหมครับ |
|
|
|
|
|
|
|
น่าจะพอเป็นแนวทางได้ครับ
PHP MySQL Add/Insert Multiple Record
|
|
|
|
|
Date :
2015-10-19 09:30:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณนะครับ ขออีกนะครับ
ในกรณีที่ว่า การเพิ่มวันที่อ่าครับ มีฟิลเดียวในการเพิ่มจำนวนสินค้าในแต่วัน แต่จะทำยังไงให้วันที่เพิ่มไปทุกๆ แถว ที่เพิ่มจำนวนสินค้าเข้าไปอ่าครับ
|
|
|
|
|
Date :
2015-10-20 01:08:18 |
By :
kpraew |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอสอบถามครับ พอดีติดปัญหาในการใช้ datatable เป็นฟอร์มในการเก็บข้อมูล เนื่องจากกรอกข้อมูลในหน้าแรก ครบ แล้ว พอที่ที่หน้า 2 แล้วกดบันทึก มันเก็บข้อมูลเฉพาะรายการที่อยู่หน้าที่ 2 ครับ รายการที่ 1-10มันไม่ถูกเก็บด้วย แบบนี้แก้ไขยังไงครับ
อันนี้เป็นโค๊ด insert ครับ
$date_working = $_POST['date_working'];
$ot_start = $_POST['ot_start'];
$ot_end = $_POST['ot_end'];
$ot_special = $_POST['ot_special'];
$hr_ot = $_POST['hr_ot'];
$note = $_POST['note'];
$personnel_id = $_POST['personnel_id'];
$section_id = $_POST['section_id'];
for ($i = 1; $i<= $_POST["hdnLine"]; $i++){
if(isset($_POST["ot_start$i"] ))
{
if($_POST["ot_start$i"] != "" &&
$_POST["hr_ot$i"] != "" &&
$_POST["note$i"] != "" )
{
$sql = "INSERT INTO ot (date_working, ot_start, ot_special, hr_ot, note, personnel_id, section_id)
VALUES ('".$_POST["date_working"]."','".$_POST["ot_start$i"]."','".$_POST["ot_special$i"]."','".$_POST["hr_ot$i"]."','".$_POST["note$i"]."','".$_POST["personnel_id$i"]."',
'".$_POST["section_id$i"]."')";
$con = mysqli_query($conn,$sql);
}
}
}
|
|
|
|
|
Date :
2023-03-14 22:43:56 |
By :
ppumin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|