shop 테이블명 g5_shop 으로 변경

This commit is contained in:
chicpro
2013-09-13 17:13:41 +09:00
parent 90ee89b4f5
commit fa4034cf82
10 changed files with 9 additions and 11 deletions

View File

@ -99,7 +99,7 @@ $total_count = $row['cnt'];
$ca_temp = "";
if(strlen($save['ca_id']) > 2) // 중분류 이하일 경우
{
$sql2 = " select ca_name from $g5[shop_category_table] where ca_id='".substr($save['ca_id'],0,2)."' ";
$sql2 = " select ca_name from {$g5['g5_shop_category_table']} where ca_id='".substr($save['ca_id'],0,2)."' ";
$row2 = sql_fetch($sql2);
$ca_temp = '<a href="./list.php?ca_id='.substr($save['ca_id'],0,2).'">'.$row2['ca_name'].'</a> &gt; ';
}