목록에서 첨부 다운하기
페이지 정보
작성자 최고관리자 댓글 0건 조회 16,610회 작성일 19-11-26 14:50본문
<?
$sql = " select * from $g5[board_file_table] where bo_table = ". $bo_table. " and wr_id = ". $list[$i][wr_id] ." order by bf_no ";
$result = sql_query($sql);
while ($row = sql_fetch_array($result))
{
$down_link = "download.php?bo_table={$bo_table}&wr_id={$list[$i][wr_id]}&no={$row[bf_no]}";
$file_source = addslashes($row[bf_source]);
$file_type = preg_replace(/^.*.([^.]+)$/D, $1, $file_source);
$file_size = get_filesize($row[bf_filesize]);
if(!in_array($file_type, array(jpg, jpeg, gif, bmp, png))){ //이미지는 제외
echo "<a href="".$down_link."" title="".$file_source."">";
echo "<img src=". $board_skin_url ."/filetype/". $file_type .".gif border=0 align=absmiddle alt="".$file_source.""><!-- ({$file_size}) -->";
echo "</a>";
}
}
?>
댓글목록
등록된 댓글이 없습니다.