$str="select ref from eccm_category where company_ref='$company_ref' and form_type='product' and status='Y' order by priority desc";
$result=mysql_query($str,$link);
$hot=mysql_fetch_array($result);
$hot_cat = $hot[0];
$str="select ref, name_chi, desc_chi from eccm_item where cat_ref='$hot_cat' order by priority desc";
$result=mysql_query($str,$link);
$hot_product=mysql_fetch_array($result);
?>