插入数组值使用php和PDO

时间:2016-10-02 10:44:18

标签: php mysql arrays ajax

使用Ajax加载的数组插入将多个产品插入到单个id中。也许使用Explode但需要对此类输出有明确的指示: enter image description here

所有产品(问题)都会输入一个ID。这些问题列表由Ajax添加。

<?php
if(isset($_POST['Submit'])){
    try {
    $serviceTitle = $_POST['serviceTitle'];
    $price = $_POST['price'];
    $quantity = $_POST['quantity'];
    $amount = $_POST['amount'];

    $date = date('Y-m-d');
    date_default_timezone_set('Asia/Dacca'); 
    $time = date('h:i:s');
    $createBy = $_SESSION['sess_username'];

    $_SESSION['orderNo'] = $_POST['orderNo'];
    $_SESSION['customerNo'] = $_POST['customerNo'];

    if($_POST['Submit']==='Submit'){
        for($i=0;$i<count($serviceTitle);$i++){
            $statement = $db->prepare("INSERT INTO invoice (orderNo,customerNo,productName,price,quantity,amount,createDate,createTime,createBy) VALUES (?,?,?,?,?,?,?,?,?)");
            $statement->execute(array($_POST['orderNo'],$_POST['customerNo'],$serviceTitle[$i],$price[$i],$quantity[$i],$amount[$i],$date,$time,$createBy));
        }
    }
    header("location: order_confirm_tech_step2.php");
    }
    catch(Exception $e) {
            $error_message = $e->getMessage();
    }
}
?>

它将插入相同的orderNo和customerNo,但我想插入这样的数据行: enter image description here 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我认为最好的方法是给所有inpunt提供不同的名称,例如'new_screen_price' 'old_screen_price'

如果您的表单是由js生成的,那么如果没有直接放在您拥有的HTML中,则可以执行此操作

<input name='new_screen_price'>
<input name='new_screen_qty'>
...

在像

这样的PHP中获取单个值之后
$newScreen = [];
$newScreen['name'] = 'new screen';
$newScreen['price'] = $_POST['new_screen_price'];

将您的数组产品放在一个

$products = [];
$products['newScreen'] = $newScreen;

你准备好了请求我只为两个参数价格和名称做,但显然你需要所有

foreach($products as $prod){
   $statement = $db->prepare("INSERT INTO invoice (orderNo,customerNo,productName,price,quantity,amount,createDate,createTime,createBy) VALUES (?,?,:name,:price,...)");
   $statement->bindParam(':name', $prod->name);
   $statement->bindParam(':price', $prod->price);
   $statement->execute();
}

美好的一天,我希望这可以帮助你