我想products_tax_class_ids
在 OSCommerce 购物车软件的结帐付款页面中检索。例如,用户的购物车中有 20 件商品,如果有任何商品有products_tax_class_id = 30
,网站会警告他。
此代码不起作用。
$tax = tep_db_query("select products_tax_class_id
from " . TABLE_PRODUCTS . "
where products_id = '".$card[$products_id]."'");
while ($warn = tep_db_fetch_array($tax)) {
if (warn== '30') {
echo "attention ....";
}
else {
echo "..."
}
}
我怎么能compare tax_class_id
的产品?