if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 관련 상품이 있는지 체크
$row_rel = sql_fetch(" select count(*) as cnt from {$g5['g5_shop_item_relation_table']} a left join {$g5['g5_shop_item_table']} b on (a.it_id2=b.it_id) where a.it_id = '{$it['it_id']}' and b.it_use='1' ");
$rel_cnt = $row_rel['cnt'];
<?php if ($rel_cnt) { ?>
- 관련상품이 출력되는 부분 -
<?php } ?>