我想显示从表中选择的查询
<?php
$where = "";
if(isset($_GET['category']))
{
$catid = $_GET['category'];
$where = " WHERE product.categoryid = $catid";
}
这就是问题所在 $where
函数获取类别
$sql = "SELECT category.*,
category.category_id , items.id AS itemID,items.asset_tag,items.name,
items.brand,items.status,
items.quantity,items.category_id,
items.color,items.texture,items.photo,items.date,
items.fetch_item FROM items LEFT JOIN category ON
category.category_id=items.category_id
WHERE items.status = 'Available' AND items.fetch_item = '0' $where";
?>
1条答案
按热度按时间ac1kyiln1#
看起来您犯了一个小错误,因为在“默认”查询中您已经
WHERE
语句,所以在AND
或者OR
而不是WHERE
再一次:另外,你可以注射额外的
WHERE
通过使用sprintf()函数,条件变得更加优雅。请看下面的示例: