그누보드 [G4] 첨부파일을 일정개수 미리 입력창 보여주기
페이지 정보
본문
# 첨부파일을 일정개수(갯수)만큼 미리 입력창 보여주기
스킨 / wirte.skin.php 의 아래 내용을
<? if ($is_file) { ?>
<tr>
<td style='padding-left:20px; height:30px;'><table cellpadding=0 cellspacing=0><tr><td style=" padding-top: 10px;">· 파일 <span onclick="add_file();" style='cursor:pointer; font-family:tahoma; font-size:12pt;'>+</span> <span onclick="del_file();" style='cursor:pointer; font-family:tahoma; font-size:12pt;'>-</span></td></tr></table></td>
<td style='padding:5 0 5 0;'><table id="variableFiles" cellpadding=0 cellspacing=0></table><?// print_r2($file); ?>
<script language="JavaScript">
var flen = 0;
function add_file(delete_code)
{
var upload_count = <?=(int)$board[bo_upload_count]?>;
if (upload_count && flen >= upload_count)
{
alert("이 게시판은 "+upload_count+"개 까지만 파일 업로드가 가능합니다.");
return;
}
var objTbl;
var objRow;
var objCell;
if (document.getElementById)
objTbl = document.getElementById("variableFiles");
else
objTbl = document.all["variableFiles"];
objRow = objTbl.insertRow(objTbl.rows.length);
objCell = objRow.insertCell(0);
objCell.innerHTML = "<input type='file' class=ed name='bf_file[]' title='파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능'>";
if (delete_code)
objCell.innerHTML += delete_code;
else
{
<? if ($is_file_content) { ?>
objCell.innerHTML += "<br><input type='text' class=ed size=50 name='bf_content[]' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.'>";
<? } ?>
;
}
flen++;
}
<?=$file_script; //수정시에 필요한 스크립트?>
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>
</tr>
<? } ?>
아래의 내용으로 교체합니다.
2013-05-19 첨부파일 설명글을 추가할수 있도록 코드 추가합니다.
<?php if ($is_file) { // 첨부파일 있을때 ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일1 <?php //echo (int)$board[bo_upload_count]; ?></td>
<td><input class="box" type="file" name='bf_file[]' /><?php if(!$file[0][href]){ echo " (필수입력)"; }
if($file[0][href])
echo "<input type='checkbox' name='bf_file_del[0]' value='1'><a href='{$file[0][href]}'>{$file[0][source]}({$file[0][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[0]' value='".addslashes(get_text($file[0][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php if ((int)$board[bo_upload_count] >= 2 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일2</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[1][href])
echo "<input type='checkbox' name='bf_file_del[1]' value='1'><a href='{$file[1][href]}'>{$file[1][source]}({$file[1][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[1]' value='".addslashes(get_text($file[1][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 3 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일3</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[2][href])
echo "<input type='checkbox' name='bf_file_del[2]' value='1'><a href='{$file[2][href]}'>{$file[2][source]}({$file[2][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[2]' value='".addslashes(get_text($file[2][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 4 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일4</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[3][href])
echo "<input type='checkbox' name='bf_file_del[3]' value='1'><a href='{$file[3][href]}'>{$file[3][source]}({$file[3][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[3]' value='".addslashes(get_text($file[3][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 5 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일5</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[4][href])
echo "<input type='checkbox' name='bf_file_del[4]' value='1'><a href='{$file[4][href]}'>{$file[4][source]}({$file[4][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[4]' value='".addslashes(get_text($file[4][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 6 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일6</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[5][href])
echo "<input type='checkbox' name='bf_file_del[5]' value='1'><a href='{$file[5][href]}'>{$file[5][source]}({$file[5][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[5]' value='".addslashes(get_text($file[5][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 7 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일7</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[6][href])
echo "<input type='checkbox' name='bf_file_del[6]' value='1'><a href='{$file[6][href]}'>{$file[6][source]}({$file[6][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[6]' value='".addslashes(get_text($file[6][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 8 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일8</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[7][href])
echo "<input type='checkbox' name='bf_file_del[7]' value='1'><a href='{$file[7][href]}'>{$file[7][source]}({$file[7][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[7]' value='".addslashes(get_text($file[7][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 9 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일9</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[8][href])
echo "<input type='checkbox' name='bf_file_del[8]' value='1'><a href='{$file[8][href]}'>{$file[8][source]}({$file[8][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[8]' value='".addslashes(get_text($file[8][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 10 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일10</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[9][href])
echo "<input type='checkbox' name='bf_file_del[9]' value='1'><a href='{$file[9][href]}'>{$file[9][source]}({$file[9][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[9]' value='".addslashes(get_text($file[9][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php } // 첨부파일 있을때?>
스킨 / wirte.skin.php 의 아래 내용을
<? if ($is_file) { ?>
<tr>
<td style='padding-left:20px; height:30px;'><table cellpadding=0 cellspacing=0><tr><td style=" padding-top: 10px;">· 파일 <span onclick="add_file();" style='cursor:pointer; font-family:tahoma; font-size:12pt;'>+</span> <span onclick="del_file();" style='cursor:pointer; font-family:tahoma; font-size:12pt;'>-</span></td></tr></table></td>
<td style='padding:5 0 5 0;'><table id="variableFiles" cellpadding=0 cellspacing=0></table><?// print_r2($file); ?>
<script language="JavaScript">
var flen = 0;
function add_file(delete_code)
{
var upload_count = <?=(int)$board[bo_upload_count]?>;
if (upload_count && flen >= upload_count)
{
alert("이 게시판은 "+upload_count+"개 까지만 파일 업로드가 가능합니다.");
return;
}
var objTbl;
var objRow;
var objCell;
if (document.getElementById)
objTbl = document.getElementById("variableFiles");
else
objTbl = document.all["variableFiles"];
objRow = objTbl.insertRow(objTbl.rows.length);
objCell = objRow.insertCell(0);
objCell.innerHTML = "<input type='file' class=ed name='bf_file[]' title='파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능'>";
if (delete_code)
objCell.innerHTML += delete_code;
else
{
<? if ($is_file_content) { ?>
objCell.innerHTML += "<br><input type='text' class=ed size=50 name='bf_content[]' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.'>";
<? } ?>
;
}
flen++;
}
<?=$file_script; //수정시에 필요한 스크립트?>
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>
</tr>
<? } ?>
아래의 내용으로 교체합니다.
2013-05-19 첨부파일 설명글을 추가할수 있도록 코드 추가합니다.
<?php if ($is_file) { // 첨부파일 있을때 ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일1 <?php //echo (int)$board[bo_upload_count]; ?></td>
<td><input class="box" type="file" name='bf_file[]' /><?php if(!$file[0][href]){ echo " (필수입력)"; }
if($file[0][href])
echo "<input type='checkbox' name='bf_file_del[0]' value='1'><a href='{$file[0][href]}'>{$file[0][source]}({$file[0][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[0]' value='".addslashes(get_text($file[0][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php if ((int)$board[bo_upload_count] >= 2 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일2</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[1][href])
echo "<input type='checkbox' name='bf_file_del[1]' value='1'><a href='{$file[1][href]}'>{$file[1][source]}({$file[1][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[1]' value='".addslashes(get_text($file[1][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 3 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일3</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[2][href])
echo "<input type='checkbox' name='bf_file_del[2]' value='1'><a href='{$file[2][href]}'>{$file[2][source]}({$file[2][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[2]' value='".addslashes(get_text($file[2][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 4 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일4</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[3][href])
echo "<input type='checkbox' name='bf_file_del[3]' value='1'><a href='{$file[3][href]}'>{$file[3][source]}({$file[3][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[3]' value='".addslashes(get_text($file[3][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 5 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일5</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[4][href])
echo "<input type='checkbox' name='bf_file_del[4]' value='1'><a href='{$file[4][href]}'>{$file[4][source]}({$file[4][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[4]' value='".addslashes(get_text($file[4][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 6 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일6</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[5][href])
echo "<input type='checkbox' name='bf_file_del[5]' value='1'><a href='{$file[5][href]}'>{$file[5][source]}({$file[5][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[5]' value='".addslashes(get_text($file[5][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 7 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일7</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[6][href])
echo "<input type='checkbox' name='bf_file_del[6]' value='1'><a href='{$file[6][href]}'>{$file[6][source]}({$file[6][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[6]' value='".addslashes(get_text($file[6][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 8 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일8</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[7][href])
echo "<input type='checkbox' name='bf_file_del[7]' value='1'><a href='{$file[7][href]}'>{$file[7][source]}({$file[7][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[7]' value='".addslashes(get_text($file[7][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 9 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일9</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[8][href])
echo "<input type='checkbox' name='bf_file_del[8]' value='1'><a href='{$file[8][href]}'>{$file[8][source]}({$file[8][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[8]' value='".addslashes(get_text($file[8][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php if ((int)$board[bo_upload_count] >= 10 || (int)$board[bo_upload_count] == 0) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 파일10</td>
<td><input class="box" type="file" name='bf_file[]' /><?php
if($file[9][href])
echo "<input type='checkbox' name='bf_file_del[9]' value='1'><a href='{$file[9][href]}'>{$file[9][source]}({$file[9][size]})</a> 파일 삭제";
if ($is_file_content)
echo "<br /><input type='text' class=ed size=50 name='bf_content[9]' value='".addslashes(get_text($file[9][bf_content]))."' title='업로드 이미지 파일에 해당 되는 내용을 입력하세요.' />";
?></td>
</tr>
<?php } ?>
<?php } // 첨부파일 있을때?>
댓글목록
등록된 댓글이 없습니다.