shop 테이블명 g5_shop 으로 변경
This commit is contained in:
@ -17,7 +17,7 @@ $sql = " select a.it_id,
|
||||
a.ct_point,
|
||||
b.it_sell_email,
|
||||
b.it_origin
|
||||
from {$g5['shop_cart_table']} a left join {$g5['shop_item_table']} b on ( a.it_id = b.it_id )
|
||||
from {$g5['g5_shop_cart_table']} a left join {$g5['g5_shop_item_table']} b on ( a.it_id = b.it_id )
|
||||
where a.od_id = '$od_id'
|
||||
and a.ct_select = '1'
|
||||
group by a.it_id
|
||||
@ -29,7 +29,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
$sql = " select SUM(IF(io_type = 1, (io_price * ct_qty), ((ct_price + io_price) * ct_qty))) as price,
|
||||
SUM(ct_point * ct_qty) as point,
|
||||
SUM(ct_qty) as qty
|
||||
from {$g5['shop_cart_table']}
|
||||
from {$g5['g5_shop_cart_table']}
|
||||
where it_id = '{$row['it_id']}'
|
||||
and od_id = '$od_id'
|
||||
and ct_select = '1' ";
|
||||
@ -37,7 +37,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
|
||||
// 옵션정보
|
||||
$sql2 = " select ct_option, ct_qty
|
||||
from {$g5['shop_cart_table']}
|
||||
from {$g5['g5_shop_cart_table']}
|
||||
where it_id = '{$row['it_id']}' and od_id = '$od_id' and ct_select = '1'
|
||||
order by io_type asc, ct_id asc ";
|
||||
$result2 = sql_query($sql2);
|
||||
|
||||
Reference in New Issue
Block a user