gpt4 book ai didi

php - echo 在 php 页面中选择选项?

转载 作者:行者123 更新时间:2023-12-01 00:21:25 25 4
gpt4 key购买 nike

我正在尝试使用 mysql 结果回显选择选项。

我下面的代码只得到一个结果,但我在 mysql 数据库中有 5 个结果!

PHP 代码:

if( ! $stmt = $db_conx->prepare("SELECT id, product_name FROM $storeShop ORDER by id") ) {
die( $db_conx->error );
}
$dropdownlist_list = "";
$stmt->bind_param('i', $id);
if ( ! $stmt->execute() ) {
die( $stmt->error );
}
$stmt->bind_result($id, $product_name);
$stmt->store_result();

while($stmt->fetch()) {
$valuesss[] = array('id'=>$id, 'product_name'=>$product_name);
$dropdownlist_list = '<option data-filter="'.$product_name.'">'.$product_name.'</option>';
}

/* close statement */
mysqli_stmt_close($stmt);

HTML 代码:

<select id="galleryfilter" class="form-control pull-left">
<?php echo $dropdownlist_list; ?>

</select>

谁能告诉我怎么了?

谢谢

最佳答案

您必须附加新选项,目前您正在分配数据库中的最后一个值

这将起作用: $dropdownlist_list .= '<option data-filter="'.$product_name.'">'.$product_name.'</option>';

关于php - echo 在 php 页面中选择选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25284334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com