OLDBOY/skin/board/daemon_kind_upbit/write/write.file.php
<section class="tbl_frm">
    <table cellpadding="0" cellspacing="0" class="Box File">
    <? for ($i=0; $is_file && $i<=$file['count'];$i++) { ?>
        <? if ($i==0) { ?>
            <tr class="Bar">
                <td class="Left">
                    <button type="button" class="btn_frmline fwzadd">추가</button>
                </td>
                <td class="Right">
                    &nbsp;&nbsp;업로드 제한 : <?=$board['bo_upload_count'];?> 개
                </td>
            </tr>
        <? } ?>
        <tr class="Bar">
            <td class="Left">파일</td>
            <td class="Right">
                <input type="file" name="bf_file[]" title="파일첨부 :  용량 <?=$upload_max_filesize;?> 이하만 업로드 가능" style="display:inline-block;">
                <? if ($is_file_content) { ?>
                    <input type="text" name="bf_content[]" value="<?=$file[$i]['bf_content'];?>" placeholder="파일 설명을 입력해주세요." class="frm_txt" size="100">
                <? } ?>
                <? if($w == "u" && $file[$i]['file']) { ?>
                    <input type="checkbox" id="bf_file_del<?=$i;?>" name="bf_file_del[<?=$i;?>]" value="1"> <span for="bf_file_del<?=$i;?>"><?=$file[$i]['source'];?>(<?=$file[$i]['size'];?>) 파일 삭제</span>
                <? } ?>
            </td>
        </tr>
    <? } ?>
    </table>
</section>