페이징 질문드려요
본문
/shop/list.php 를 커스터마이징 할일이 있어서 9라인에 sql문을 수정했습니다
$su=substr($ca_id,2,5);
$sql = " select * from {$g5['g5_shop_category_table']} where SUBSTRING(ca_id,3,6) like '%$su' and ca_use = '1' ";
//////125라인에
// 총몇개 = 한줄에 몇개 * 몇줄
$items = $ca['ca_list_mod'] * $ca['ca_list_row'];
// 페이지가 없으면 첫 페이지 (1 페이지)
if ($page < 1) $page = 1;
// 시작 레코드 구함
$from_record = ($page - 1) * $items;
$list = new item_list($skin_file, $ca['ca_list_mod'], $ca['ca_list_row'], $ca['ca_img_width'], $ca['ca_img_height']);
$list->set_category($ca['ca_id'], 1);
$list->set_category($ca['ca_id'], 2);
$list->set_category($ca['ca_id'], 3);
$list->set_is_page(true);
$list->set_order_by($order_by);
$list->set_from_record($from_record);
$list->set_view('it_img', true);
$list->set_view('it_id', false);
$list->set_view('it_name', true);
$list->set_view('it_basic', true);
$list->set_view('it_cust_price', true);
$list->set_view('it_8_subj', true);
$list->set_view('it_icon', true);
$list->set_view('sns', true);
$su_te=substr($ca_id,2,5);
$sql = " select * from {$g5['g5_shop_item_table']} where ca_id3 like '%0' ";
//echo $sql;
$list->set_query($sql);
echo $list->run();
// where 된 전체 상품수
$total_count = $list->total_count;
// 전체 페이지 계산
$total_page = ceil($total_count / $items);
이렇게 수정도했습니다
그랬떠니 페이징은 제대로 나오긴하는데 제품이 다 나오고있습니다
$total_count 을 에코 찍으니 57개입니다
list.php에서 페이징 안된채 57개가 고대로 뿌려지고있고 페이징은 밑에 1.2.3 이라고 잘나오고있습니다 ;;;;
제대로 잡아주려면 어디를 손봐야하는건가요?부탁드립니다
답변을 작성하시기 전에 로그인 해주세요.