게시판 리스트 정렬에서, $qstr2 변수와 그 뒤의 숫자는 어떤 의미인가요?
본문
<th scope="col"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜</a></th>
<th scope="col"><?php echo subject_sort_link('wr_hit', $qstr2, 1) ?>조회</a></th>
<?php if ($is_good) { ?><th scope="col"><?php echo subject_sort_link('wr_good', $qstr2, 1) ?>추천</a></th><?php } ?>
<?php if ($is_nogood) { ?><th scope="col"><?php echo subject_sort_link('wr_nogood', $qstr2, 1) ?>비추천</a></th><?php } ?>
subject_sort_link('wr_datetime', $qstr2, 1)
답변 1
검색이나 게시글 정렬 페이징 순서 등 get 값을 가져오기위한 변수입니다.
function subject_sort_link($col, $query_string='', $flag='asc')
보시면 아시듯이 $query_string 에 값을 보내서 그대로 유지를 하죠.... 검색하고 다음페이지 가도 검색결과가 그대로 유지되도록 하는 역할입니다.
이 부분을 잘 분석하시면 다른 조건을 내가 넣는것도 가능합니다.
답변을 작성하시기 전에 로그인 해주세요.