최신글 lib파일에 주소창의 값을 넣을 수 있을까요?
본문
안녕하세요.
주소창에 http://aaa.kr/bbs/board.php?bo_table=aaa&sfl=wr_9&stx=%EC%84%9C%EC%9A%B8
있는 값을 최신글 lib파일에 대입을 하려합니다.
위 주소창의 stx를 아래에 넣어서 사용할 수 있을까요?
$todays = date("Ymd", time());
$sql = " select * from {$tmp_write_table} where ad_area_best = 1 and wr_9 = '{$stx}' and fr_date3 < {$todays} and to_date3 > {$todays} and wr_is_comment = 0 {$subqry} order by rand() limit 0, {$rows} ";
답변 2
최신글 lib 의 function 에서 추가 옵션을 작성하셔서 사용하시면 됩니다.
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $cache_time=1, $options='', $add_option='')
function latest(스킨, 게시판, 호출갯수, 제목길이, 캐쉬, 옵션, 추가옵션)
1) /lib/latest.lib.php 의 latest() 함수를 복사
2) /extend/user.config.php 에 붙여넣기
3) 함수이름 변경 latest() -> latest_best(), 파라미터 추가 (~, $stx);
4) latest_best() 함수를 원하는 목적에 맞게 수정
5) 최신글 함수 호출 부분을 수정
latest();
->
latest_best(~, $stx);