我想生成一个查询,其中包含从下拉菜单中选择的值,该值将保存到PHP变量中
<script>
$(document).ready( function ()
{
/* we are assigning change event handler for select box */
/* it will run when selectbox options are changed */
$('#dropdown_selector').change(function()
{
/* setting currently changed option value to option variable */
var option = $(this).find('option:selected').val();
/* setting input box value to selected option value */
$('$showoption').val(option);
});
});
</script>
&#13;
<?
mysql_query("Select unit_price From products where id= '" . $id_value . "'");
while ($row = mysql_fetch_array($qquery)){
$unit = $row['unit_price'];
}
?>
<select class="form-control" name="model" id="dropdown_selector" >
<option value="1">1001</option>
</select>
&#13;
答案 0 :(得分:0)
一个选项可能是获取选择的值并使用同一页面上的表单提交。然后,您可以在PHP中访问GET / POST参数。
另一种选择可能是在更改时获取select的值,并向php页面发出请求,该页面可以使用该数据执行您想要的操作。它也可以返回您想要的任何数据。