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

我正在表单中设置一个动态行。需要从选择下拉列表中获取产品的价格。


产品下拉列表中已经填充了数据库中的值。


<?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>


我需要的

  1. 所以在更改产品时,它应该从数据库中获取产品的价格。

  2. 自动乘以输入数量的价格例如:产品的提取价格为“2000”,我们输入的数量值为“2”,因此输出应显示为“4000”,此值要输入在价格栏中

谢谢


HUWWW
浏览 163回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript