为了账号安全,请及时绑定邮箱和手机立即绑定

如何从数据库中获取动态行输入字段中所选产品的价格?

如何从数据库中获取动态行输入字段中所选产品的价格?

HUWWW 2021-10-14 17:31:46
我正在表单中设置一个动态行。需要从选择下拉列表中获取产品的价格。产品下拉列表中已经填充了数据库中的值。<?php function fill_unit_select_box($con){    $output ='';    $query = "SELECT * FROM pricelist";    $result = $con->query($query);    if ($result->num_rows > 0) {        // output data of each row        while($row = $result->fetch_assoc()) {        $output .= '<option value="'.$row["product"].'">'.$row["product"].'</option>';        }        return $output;    }}?><div class="form-body pal">    <div class="row">        <div class="col-md-12 col-md-offset-10">            <div class="form-group">                <button type="button" class="btn btn-info add-new-product_record_details"><i class="fa fa-plus"></i> Add Product</button>            </div>        </div>    </div></div><div class="form-body pal">    <div class="row">        <div class="col-md-12">            <div class="form-group">                <div class="table-responsive">                    <table class="table table-striped table-bordered table-hover add_row" id="product_record_details">                        <thead>                            <tr>                                <th class="success text-center">Product<span class='require'>*</span></th>                                <th class="success text-center">Price<span class='require'>*</span></th>                                <th class="success text-center">Delete</th>                            </tr>                        </thead>                        <tbody>                            <tr></tr>                        </tbody>                    </table>                </div>            </div>        </div>    </div></div>我需要的所以在更改产品时,它应该从数据库中获取产品的价格。自动乘以输入数量的价格例如:产品的提取价格为“2000”,我们输入的数量值为“2”,因此输出应显示为“4000”,此值要输入在价格栏中谢谢
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 162 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信