Пример #1
0
$db = new DB_Functions();
if (isset($_POST['createorder'])) {
    $order_amount = 0;
    $order_item_count = 0;
    for ($q = 0; $q <= 20; $q++) {
        if (!isset($_POST["plant_id" . $q . ""])) {
            break;
        }
        $quantity = $_POST['quantity' . $q];
        $total = $_POST['total' . $q];
        $order_item_count++;
        $order_amount += $total;
    }
    $customer_id = $_POST['customer_id'];
    $order_area = $_POST['order_area'];
    $order_id = $db->insert_order($customer_id, $order_amount, $order_item_count, $order_area);
    for ($q = 0; $q <= 20; $q++) {
        if (!isset($_POST["plant_id" . $q . ""])) {
            break;
        }
        $order_plant_id = $_POST['plant_id' . $q];
        $res = explode("?", $order_plant_id);
        $order_plant_id = $res[0];
        $order_detail_quantity = $_POST['quantity' . $q];
        $order_detail_cost = $_POST['total' . $q];
        $db->insert_order_detail($order_id, $order_plant_id, $order_detail_quantity, $order_detail_cost);
    }
} else {
    header("Location: customerregister.php");
}
?>