orderform.php 의 옵션항목 부분에 입금자가 나오게 하려고합니다.
아래부분인거 같은데...어떻게 해야나올까요?
// 상품의 옵션정보
$sql = " select ct_id, it_id, ct_price, ct_point, ct_qty, ct_option, ct_status, cp_price, ct_stock_use, ct_point_use, ct_send_cost, io_type, io_price
from {$g5['g5_shop_cart_table']}
where od_id = '{$od['od_id']}'
and it_id = '{$row['it_id']}'
order by io_type asc, ct_id asc ";
$res = sql_query($sql);
$rowspan = sql_num_rows($res);
<?php echo get_text($od['od_deposit_name']); ?> 이거 같은데 어떻게 바꿔서 넣어야 할까요?ㅠㅠ
답변 1개
입금자명은 주문 테이블(g5_shop_order)에 저장됩니다.
장바구니 테이블(g5_shop_cart_table) 과는 별개 입니다.
답변을 작성하려면 로그인이 필요합니다.