업로드파일최대갯수 표시하기

skin/board/스킨명/write.skin.php 에서

        function del_file()
        {
            // file_length 이하로는 필드가 삭제되지 않아야 합니다.
            var file_length = <?=(int)$file_length?>;
            var objTbl = document.getElementById("variableFiles");
            if (objTbl.rows.length - 1 > file_length)
            {
                objTbl.deleteRow(objTbl.rows.length - 1);
                flen--;
            }
        }
        </script></td>

이 부분에서 아랫쪽  </script></td> 사이에 아래와 같은 소스를 넣어주면 됩니다.

        function del_file()
        {
            // file_length 이하로는 필드가 삭제되지 않아야 합니다.
            var file_length = <?=(int)$file_length?>;
            var objTbl = document.getElementById("variableFiles");
            if (objTbl.rows.length - 1 > file_length)
            {
                objTbl.deleteRow(objTbl.rows.length - 1);
                flen--;
            }
        }
        </script>&nbsp;(총 <?=$board[bo_upload_count]?> 개의 파일 업로드 가능)</td>

|

댓글 4개

추가로 파일용량도 :D

파일 하나 제한용량은 <span style="color:#000;"><?=$upload_max_filesize?></span> 입니다. 올릴수있는갯수 <span style="color:#000;"><?=$board[bo_upload_count]?></span>개
아주 좋아요 ^^
업로드파일최대갯수 표시하기
댓글을 작성하시려면 로그인이 필요합니다. 로그인

그누4 팁자료실

그누보드4와 관련된 팁을 여러분들과 함께 공유하세요. 나누면 즐거움이 커집니다.

+
제목 글쓴이 날짜 조회
16년 전 조회 4,792
16년 전 조회 8,718
16년 전 조회 3,389
16년 전 조회 5,620
16년 전 조회 4,833
16년 전 조회 7,822
16년 전 조회 7,992
16년 전 조회 3,098
16년 전 조회 4,328
16년 전 조회 3,448
16년 전 조회 4,371
16년 전 조회 4,483
16년 전 조회 4,034
16년 전 조회 5,108
16년 전 조회 3,812
16년 전 조회 3,319
16년 전 조회 6,015
16년 전 조회 1.9만
16년 전 조회 4,344
16년 전 조회 3,495
🐛 버그신고