$sql = " select a.*, "._MISU_QUERY_."
from $g4[yc4_order_table] a
left join $g4[yc4_cart_table] b on (a.on_uid=b.on_uid)
where a.mb_id = '$member[mb_id]'
group by a.od_id ";
$result = sql_query($sql);
$tot_itemcnt = 0;
$tot_orderamount = 0;
$tot_ordercancel = 0;
$tot_dc_amount = 0;
$tot_receiptamount = 0;
$tot_receiptcancel = 0;
$tot_misuamount = 0;
for ($i=0; $row=mysql_fetch_array($result); $i++)
{
$tot_itemcount += $row[itemcount];
$tot_orderamount += $row[orderamount];
$tot_ordercancel += $row[ordercancel];
$tot_dc_amount += $row[od_dc_amount];
$tot_receiptamount += $row[receiptamount];
$tot_receiptcancel += $row[receiptcancel];
$tot_misu += $row[misu];
}
'스크립트 > 그누보드 관련' 카테고리의 다른 글
[영카트]제품 리사이징 width기준으로 height 자유롭게 (0) | 2013.06.28 |
---|---|
첨부파일이미지 지정된 크기로 저장 (0) | 2013.06.24 |
회원 비빌번호 모를시 강제로 제작하기 (0) | 2012.10.23 |
주문번호를 random하게 시작하게 하기 (0) | 2012.08.25 |
view 내용에서 다운로드 강제로 연결 (0) | 2012.07.31 |