当前位置: 首页>>代码示例>>PHP>>正文


PHP DB_Functions::insert_order_detail方法代码示例

本文整理汇总了PHP中DB_Functions::insert_order_detail方法的典型用法代码示例。如果您正苦于以下问题:PHP DB_Functions::insert_order_detail方法的具体用法?PHP DB_Functions::insert_order_detail怎么用?PHP DB_Functions::insert_order_detail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DB_Functions的用法示例。


在下文中一共展示了DB_Functions::insert_order_detail方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: explode

        $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");
}
?>
<html>
<head>
	<title>Plant Nursery</title>
	<link rel="stylesheet" type="text/css" href="css/reset.css" />
	<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
	<link rel="stylesheet" type="text/css" href="css/animate.css" />
	<link rel="stylesheet" type="text/css" href="css/custom.css" />
	<link rel="stylesheet" type="text/css" href="css/jquery.timepicker.css" />
	<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
	<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
开发者ID:shriyanshgautam,项目名称:plantNursery,代码行数:31,代码来源:submitorder.php


注:本文中的DB_Functions::insert_order_detail方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。