[YC] 버전별 (4.x vs 5.2 vs 5.3) 장바구니에 담긴 개수 구하기 > 기술자료 | 해피정닷컴

[YC] 버전별 (4.x vs 5.2 vs 5.3) 장바구니에 담긴 개수 구하기 > 기술자료

본문 바로가기

사이트 내 전체검색

[YC] 버전별 (4.x vs 5.2 vs 5.3) 장바구니에 담긴 개수 구하기 > 기술자료

영카트 [YC] 버전별 (4.x vs 5.2 vs 5.3) 장바구니에 담긴 개수 구하기

페이지 정보


본문

영카트 버전에 따른 장바구니 개수를 제어하는 방법이 변경되었습니다.


1. 영카트 4.17.03

1-1. lib / shop.lib.php  내용
<?php
// 세션변수값 얻음
function get_session($session_name)
{
    return $_SESSION[$session_name];
}

// 장바구니 건수 검사
function get_cart_count($on_uid)
{
    global $g4;

    $sql = " select count(ct_id) as cnt from $g4[yc4_cart_table] where on_uid = '$on_uid' ";
    $row = sql_fetch($sql);
    $cnt = (int)$row[cnt];
    return $cnt;
}
?>


1-2. 장바구니에 담긴 개수 보기
<?=get_cart_count(get_session('ss_on_uid'));?>


1-3. 장바니에 담긴 목록보기
<?include_once("$g4[shop_path]/boxcart.inc.php");?>
shop / boxcart.inc.php
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 
?>

<table cellpadding=0 cellspacing=0 bgcolor=#FFFFFF>
<tr><td><a href='<?=$g4[shop_path]?>/cart.php'><img src='<?=$g4[shop_img_path]?>/bar_cart.gif' border=0></a></td></tr>
<?
$hsql = " select a.it_id, b.it_name, a.ct_qty from $g4[yc4_cart_table] a, $g4[yc4_item_table] b
          where a.on_uid = '".get_session('ss_on_uid')."'
            and a.it_id  = b.it_id
          order by a.ct_id ";
$hresult = sql_query($hsql);
for ($i=0; $row=sql_fetch_array($hresult); $i++)
{
    echo "<tr><td height=22><nobr style='display:block; overflow:hidden; width:170px;'>&nbsp;&nbsp;· ";
    $it_name = get_text($row[it_name]);
    // 이미지로 할 경우
    //$it_name = get_it_image($row[it_id]."_s", 50, 50, $row[it_id]);
    echo "<a href=\"$g4[shop_path]/cart.php\">$it_name</a></nobr></td></tr>\n";
}

if ($i==0)
    echo "<tr><td><img src='$g4[shop_img_path]/nocart.gif'></td></tr>\n";
?>
</table>



2. 영카트 5.2.9.8.4 

2-1. lib / shop.lib.php  내용
<?php
// 세션변수값 얻음
function get_session($session_name)
{
    return isset($_SESSION[$session_name]) ? $_SESSION[$session_name] : '';
}

// 장바구니 건수 검사
function get_cart_count($cart_id)
{
    global $g5, $default;

    $sql = " select count(ct_id) as cnt from {$g5['g5_shop_cart_table']} where od_id = '$cart_id' ";
    $row = sql_fetch($sql);
    $cnt = (int)$row['cnt'];
    return $cnt;
}
?>


2-2. 장바구니에 담긴 개수 보기
<?php echo get_cart_count(get_session('ss_cart_id'));?>


2-3. 장바니에 담긴 목록보기
<?php include_once(G5_SHOP_SKIN_PATH.'/boxcart.skin.php'); // 장바구니 ?>
theme / basic / skin / shop / basic / boxcart.skin.php
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
?>

<!-- 장바구니 간략 보기 시작 { -->
<aside id="sbsk">
    <h2>장바구니</h2>

    <ul>
    <?php
    $hsql  = " select it_id, it_name from {$g5['g5_shop_cart_table']} ";
    $hsql .= " where od_id = '".get_session('ss_cart_id')."' group by it_id ";
    $hresult = sql_query($hsql);
    for ($i=0; $row=sql_fetch_array($hresult); $i++)
    {
        echo '<li>';
        $it_name = get_text($row['it_name']);
        // 이미지로 할 경우
        //$it_name = get_it_image($row['it_id'], 50, 50, true);
        echo '<a href="'.G5_SHOP_URL.'/cart.php">'.$it_name.'</a>';
        echo '</li>';
    }

    if ($i==0)
        echo '<li id="sbsk_empty">장바구니 상품 없음</li>'.PHP_EOL;
?>
    </ul>

</aside>
<!-- } 장바구니 간략 보기 끝 -->



3. 영카트 5.3.1.2

3-1. lib / shop.lib.php  내용
<?php
// 세션변수값 얻음
function get_session($session_name)
{
    return isset($_SESSION[$session_name]) ? $_SESSION[$session_name] : '';
}

// 장바구니 건수 검사
function get_cart_count($cart_id)
{
    global $g5, $default;

    $sql = " select count(ct_id) as cnt from {$g5['g5_shop_cart_table']} where od_id = '$cart_id' ";
    $row = sql_fetch($sql);
    $cnt = (int)$row['cnt'];
    return $cnt;
}

//장바구니 간소 데이터 가져오기
function get_boxcart_datas($is_cache=false)
{
    global $g5;
    
    $cart_id = get_session("ss_cart_id");

    if( !$cart_id ){
        return array();
    }

    static $cache = array();

    if( $is_cache && !empty($cache) ){
        return $cache;
    }

    $sql  = " select * from {$g5['g5_shop_cart_table']} ";
    $sql .= " where od_id = '".$cart_id."' group by it_id ";
    $result = sql_query($sql);
    for ($i=0; $row=sql_fetch_array($result); $i++)
    {
        $key = $row['it_id'];
        $cache[$key] = $row;
    }

    return $cache;
}

//장바구니 간소 데이터 갯수 출력
function get_boxcart_datas_count()
{
    $cart_datas = get_boxcart_datas(true);

    return count($cart_datas);
}
?>


3-2. 장바구니에 담긴 개수 보기
<?php echo get_boxcart_datas_count(); ?>


3-3. 장바니에 담긴 목록보기
<?php include_once(G5_SHOP_SKIN_PATH.'/boxcart.skin.php'); // 장바구니 ?>
theme / basic / skin / shop / basic / boxcart.skin.php
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
?>

<!-- 장바구니 간략 보기 시작 { -->
<aside id="sbsk" class="op_area">
    <h2>장바구니</h2>
    <form name="skin_frmcartlist" id="skin_sod_bsk_list" method="post" action="<?php echo G5_SHOP_URL.'/cartupdate.php'; ?>">
    <ul>
    <?php
    $cart_datas = get_boxcart_datas(true);
    $i = 0;
    foreach($cart_datas as $row)
    {
        if( !$row['it_id'] ) continue;

        echo '<li>';
        $it_name = get_text($row['it_name']);
        // 이미지로 할 경우
        $it_img = get_it_image($row['it_id'], 60, 60, true);
        echo '<a href="'.G5_SHOP_URL.'/cart.php">'.$it_name.'</a>';
         echo '<div class="prd_img">'.$it_img.'</div>';
        echo '</li>';

        echo '<input type="hidden" name="act" value="buy" >';
        echo '<input type="hidden" name="ct_chk['.$i.']" value="1" >';
        echo '<input type="hidden" name="it_id['.$i.']" value="'.$row['it_id'].'">';
        echo '<input type="hidden" name="it_name['.$i.']"  value="'.$it_name.'">';

        $i++;
    }   //end foreach

    if ($i==0)
        echo '<li class="li_empty">장바구니 상품 없음</li>'.PHP_EOL;
    ?>
    </ul>
    <?php if($i){ ?><button type="submit" class="btn02 btn_buy"><i class="fa fa-credit-card" aria-hidden="true"></i> 바로구매</button><?php } ?>
    <a href="<?php echo G5_SHOP_URL; ?>/cart.php" class="btn01 go_cart">장바구니 바로가기</a>
    </form>
</aside>
<!-- } 장바구니 간략 보기 끝 -->

 

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 22 페이지
  • RSS
기술자료 목록
2221
일반   10223  2018-06-04 17:17  
2220
그누보드   8735  2018-05-28 13:20 ~ 2018-05-28 21:58  
2219
그누보드   7491  2018-05-28 12:22  
2218
그누보드   8420  2018-05-25 14:04 ~ 2018-05-25 14:05  
2217
일반   9918  2018-05-25 02:26 ~ 2018-05-25 02:36  
2216
Search   9917  2018-05-24 17:41 ~ 2018-05-24 18:51  
2215
XpressEngine   7455  2018-05-23 18:09 ~ 2018-12-10 02:45  
2214
영카트   8693  2018-05-21 23:53 ~ 2018-05-22 00:40  
2213
호스팅   9318  2018-05-17 10:21 ~ 2018-05-17 10:41  
2212
JavaScript   18656  2018-05-15 02:11 ~ 2018-05-15 13:04  
2211
도메인   9701  2018-05-10 11:28 ~ 2018-05-10 14:05  
2210
MSSQL   10139  2018-05-09 22:36  
2209
그누보드   8767  2018-05-08 12:21 ~ 2018-05-08 12:40  
2208
호스팅   10545  2018-05-04 15:05 ~ 2023-08-29 23:55  
2207
영카트   10652  2018-05-01 20:10 ~ 2018-05-01 20:14  
열람
영카트   9926  2018-05-01 17:30 ~ 2018-05-01 17:33  
2205
Search   20191  2018-04-30 22:49 ~ 2018-10-29 18:03  
2204
그누보드   8998  2018-04-25 12:47 ~ 2018-04-25 12:54  
2203
그누보드   9624  2018-04-24 03:11 ~ 2018-04-24 04:42  
2202
영카트   8886  2018-04-12 19:29  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.