传递下拉列表选定值以在同一表单

时间:2018-04-29 20:09:31

标签: php html mysql

我正在尝试将我在动态下拉列表中选择的值(finished_product_code)作为第二个查询中的where值传递给我。如何获取我在下拉列表中选择的数值以传递给我的第二个查询?我的下拉列表有多个值。我只希望我选择的值传递给第二个查询。

谢谢,

<?php 

$query = "SELECT finished_product_code, finished_product_code  FROM 
finished_product_code_descriptions_view";
$aa = 'finished_product_code';

include 'inventory_connect.php'; 

$result = $conn->query($query);

?>

<select name="finished_product_code" style="width:170px; height:21px">;

<option value=""></option>';

<?php
while($row = $result->fetch_assoc())
echo '<option 
value="'.$row["finished_product_code"].'">'.$row["finished_product_code"].
'</option>';

?>
</select>
<br>

<?php 

$query = "select  finished_product_code from 
finished_product_code_descriptions_view where finished_product_code = $aa";


if ($stmt = $conn->prepare($query)) {
$stmt->execute();
$stmt->bind_result($finished_product_code);
while ($stmt->fetch()) {
    //printf("%s\n", $finished_product_code);
}
$stmt->close();
};
include 'inventory_connect.php';  
echo $aa;
?>

0 个答案:

没有答案