我想从单列获取多个值的数据,但页面上只显示最后一个(price = 399)。
我正在使用此代码,请帮助我想获取所有3种价格的数据。
<a href="show_products.php?price=149&price=299&price=399">
答案 0 :(得分:0)
if (isset($_GET['price']) && $_GET['price']<>"")
{
$productprice= $_GET['price'];
$productprice_result=mysql_query("select * from products where price=$productprice");
while($productprice_rows=mysql_fetch_array($productprice_result)){
$productid=$productprice_rows["product_id"];
$productsql=$productsql. "and price=$productprice ";
}
试试吧