COMMENT_GOODS

2016-07-07 15:06 来源:www.chinab4c.com 作者:ecshop专家

add_feed($GLOBALS['db']->insert_id(), COMMENT_GOODS);

要启用这个的话/includes/lib_uc.php中如何修改

if ($feed_type == COMMENT_GOODS)
{
if (empty($id))
{
return;
}
$id = intval($id);

}

回答:
$order_res = $GLOBALS['db']->getAll("SELECT g.goods_id, g.goods_name, g.goods_sn, g.goods_desc, g.goods_thumb, o.content, o.comment_rank FROM " . $GLOBALS['ecs']->table(comment') . " AS o, " . $GLOBALS['ecs']->table('goods') . " AS g WHERE o.comment_id='{$id}' AND o.id_value=g.goods_id");


大家看这句有错吗

有错误至少o.comment_id='{$id}'不是这样吧应该是 o.comment_id='$id'
在说 楼上有没有错 你测试下不就好了。