KBoard는 파일 첨부시 무조건 다운로드가 되게 한다.
이미지든, 압축파일든, 그 밖의 무엇이든.
만약 이미지 파일을 첨부하고 그 이미지를 <img>
태그로 넣고싶다면 다음 코드를 사용하면 된다.
<img src="<?php echo $content->attach->file1[0]; ?>" alt="<?php echo $content->attach->file1[1]; ?>">
<?php echo $content->attach->file1[0]; ?>
은 첨부파일 1번의 url을.
<?php echo $content->attach->file1[1]; ?>
은 첨부파일 1번의 이름을 불러온다.
2번째 첨부파일의 이름 및 url을 불러오려면 file1
을 file2
로 변경하면 된다.
참고자료
참고1 :: http://www.cosmosfarm.com/threads/document/352
참고2 :: http://www.cosmosfarm.com/threads/document/195