영카트 [YC4] 장바구니, 보관함 왼쪽메뉴 & 우측 퀵메뉴
페이지 정보
첨부파일
-
img.zip (1.9K)
38회 다운로드 | DATE : 2010-02-28 00:58:34
본문
<!-- 장바구니 -->
<?php include_once("$g4[shop_path]/boxcart.inc.php"); ?><br />
<!-- 보관함 -->
<?php include_once("$g4[shop_path]/boxwish.inc.php"); ?>
우측 퀵메뉴 규격에 적합한 디자인으로 변경한 장바구니 이미지 및 코드
shop/boxcart.inc.php 수정
소스를 아래와 같이 수정합니다.
여기에 사용된 이미지는 첨부파일 참고하세요. 이미지를 shop/img 폴더에 올리세요
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table cellpadding="0" cellspacing="0" bgcolor="#ffffff">
<tr><td><a href='<?php echo $g4[shop_path]; ?>/cart.php'><img src='<?php echo $g4[shop_img_path]; ?>/bar_cart.gif' border=0></a></td></tr>
<?php
$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:90px; font-size:11px;' /> · ";
$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";
?>
<tr><td><img src='<?php echo $g4[shop_img_path]; ?>/bar_cart_b.gif' border='0' /></a></td></tr>
</table>
댓글목록
등록된 댓글이 없습니다.