파일삭제시 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

파일삭제시 정보

파일삭제시

본문

// 업로드된 파일이 있다면 파일삭제
        $sql2 = " select * from $g4[board_file_table] where bo_table = '$bo_table' and wr_id = '$row[wr_id]' ";
        $result2 = sql_query($sql2);
        while ($row2 = sql_fetch_array($result2))           
            @unlink("$g4[path]/data/file/$bo_table/$row2[bf_file]");
            @unlink("$g4[path]/data/file/$bo_table/thumb/$row2[wr_id]");

안녕하세요?
위와같이 unlink를 연속해서 쓰니 아래 unlink에서 $row2[wr_id]값을 가져오지 못하는데
이유가 몬가요?
미리 답변 감사드립니다.
  • 복사

댓글 전체

$sql2 = " select * from $g4[board_file_table] where bo_table = '$bo_table' and wr_id = '$row[wr_id]' ";
        $result2 = sql_query($sql2);
        while ($row2 = sql_fetch_array($result2))  {       
            @unlink("$g4[path]/data/file/$bo_table/$row2[bf_file]");
            @unlink("$g4[path]/data/file/$bo_table/thumb/$row2[wr_id]");
      }
© SIRSOFT
현재 페이지 제일 처음으로