[YC4] 중분류(카테고리) 정렬해서 보여주기 > 기술자료 | 해피정닷컴

[YC4] 중분류(카테고리) 정렬해서 보여주기 > 기술자료

본문 바로가기

사이트 내 전체검색

[YC4] 중분류(카테고리) 정렬해서 보여주기 > 기술자료

영카트 [YC4] 중분류(카테고리) 정렬해서 보여주기

페이지 정보


본문



위와 같이 한줄로 연속해서 표시되다보니 메뉴 글자가 중간에 절단되어 보여져서 문제가 있습니다.
이것을 아래와 같이 한줄에 일정개수씩 보여주고 싶을때

shop/list.php 에서
include "$g4[shop_path]/listcategory2.inc.php";   를
include "$g4[shop_path]/listcategory3.inc.php";   로 변경한 경우


$str .= "<tr><td width=11 background='$g4[shop_img_path]/ca_bg02.gif'></td>";
$str .= "<td><table width=100% border=0><tr><td>";
while ($row=sql_fetch_array($result)) {
    if (preg_match("/^$row[ca_id]/", $ca_id))
        $span = "<span style='font-weight:bold;'>";
    else
        $span = "<span>";
    $str .= "<a href='./list.php?ca_id=$row[ca_id]'>{$span}$row[ca_name]</span></a> &nbsp; ";
    $exists = true;
}
$str .= "</td></tr></table></td><td width=11 background='$g4[shop_img_path]/ca_bg03.gif'></td>";


를 아래와 같이 수정합니다.


$str .= "<tr><td width=11 background='$g4[shop_img_path]/ca_bg02.gif'></td>";
$str .= "<td><table width=100% border='0' cellspacing='0' cellpadding='0'><tr>";
$list_mod = 4;
for ($i=0; $row=sql_fetch_array($result); $i++) {
    if ($i > 0 && $i % $list_mod == 0) {
        $str .= "</tr>\n\n<tr>\n";
    }

    $str .= "<td>";

    if (preg_match("/^$row[ca_id]/", $ca_id))
        $span = "<span style='font-weight:bold;'>";
    else
        $span = "<span'>";
    $str .= "<a href='./list.php?ca_id=$row[ca_id]'>{$span}$row[ca_name]</span></a> &nbsp; ";
    $exists = true;

    $str .= "</td>";
}

// 나머지 td 를 채운다.
if (($cnt = $i%$list_mod) != 0)
    for ($k=$cnt; $k<$list_mod; $k++)
        $str .= "<td>&nbsp;</td>\n";
 
$str .= "</tr></table></td><td width=11 background='$g4[shop_img_path]/ca_bg03.gif'></td>";



참고자료
http://sir.co.kr/bbs/board.php?bo_table=yc4_qa&wr_id=25097

댓글목록

등록된 댓글이 없습니다.


Total 123건 5 페이지
  • RSS
기술자료 목록
43
영카트   13047  2012-01-12 21:26  
42
영카트   16109  2011-07-23 11:01  
41
영카트   13441  2011-07-23 10:22  
40
영카트   14981  2011-07-23 10:20  
39
영카트   15416  2011-02-09 06:15  
38
영카트   14282  2010-03-12 13:18  
37
영카트   13680  2010-03-08 15:40  
열람
영카트   12964  2010-02-27 23:27  
35
영카트   10677  2010-02-27 22:24  
34
영카트   11390  2010-02-23 18:47  
33
영카트   12611  2010-02-18 23:41  
32
영카트   10724  2010-02-11 11:29  
31
영카트   10001  2010-02-10 23:57  
30
영카트   10486  2010-02-10 22:38  
29
영카트   15664  2008-09-06 06:04  
28
영카트   22701  2008-08-12 14:59  
27
영카트   15076  2008-07-24 06:15  
26
영카트   13146  2008-07-24 06:14  
25
영카트   10631  2008-07-17 12:28  
24
영카트   11384  2008-07-11 15:20  

검색

해피정닷컴 정보

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

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