테스트 사이트 - 개발 중인 베타 버전입니다

게시판 엑셀다운로드 (2018-07-10 수정)

· 15년 전 · 22362 · 30
막장코더( w3holic ) 님이 올려주신 내용을 조금 정리해보았습니다.
원본 : http://sir.co.kr/g4_skin/81864
참고 : http://sir.co.kr/bbs/board.php?bo_table=g4_skin&wr_id=92624


변경된내용
①. excel.php 설정을 변경하지 않아도 가능하도록 변경했습니다.
②. 디비설정을 그누의 dbconfig.php 와 연동되도록 변경했습니다.


1. 그누보드4 / skin / board / basic / _common.php 생성
<?php
include_once "../../../common.php";
?>


2. 그누보드4 / skin / board / basic / list.skin.php 적절한 위치에 아래 코드 추가
<?php if ($admin_href) { ?><a href='<?php echo $board_skin_path; ?>/excel.php?bo_table=<?php echo $bo_table; ?>' target='_blank'>Excel</a><?php } ?>


3. 그누보드4 / skin / board / basic / excel.php 파일 생성
<?php
if (!$is_admin) {
alert("관리자만 접근 가능합니다.");
exit;
}

$excel_down = $g4['table_prefix'] . $_GET['bo_table']; //엑셀 다운로드 테이블
$wr_id = $id = $_GET['wr_id'];

include_once "_common.php";
//@mysql_query("SET CHARACTER SET utf8"); // 한글깨지면 주석해지

if ($ms =="excel"){
$g4[title] = "엑셀 문서 다운로드";
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=상품구매.xls" );
//header( "Content-Description: PHP4 Generated Data" );
} else if ($ms =="power"){
$g4[title] = "파워포인트 문서 다운로드";
header( "Content-type: application/vnd.ms-powerpoint" );
header( "Content-Disposition: attachment; filename=상품구매.ppt" );
// header( "Content-Description: PHP4 Generated Data" );
} else if ($ms =="word"){
$g4[title] = "워드 문서 다운로드";
header( "Content-type: application/vnd.ms-word" );
header( "Content-Disposition: attachment; filename=상품구매.doc" );
//header( "Content-Description: PHP4 Generated Data" );
} else if ($ms =="memo"){
$g4[title] = "메모 문서 다운로드";
header( "Content-type: application/vnd.ms-notepad" );
header( "Content-Disposition: attachment; filename=상품구매.txt" );
} else {
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=상품구매.xls" );
}
header( "Content-Description: PHP4 Generated Data" );

// 원글 + 코멘트 다운로드
$temp=sql_fetch_array(sql_query("select count(*) from {$excel_down} "));
$result=sql_query("select * from {$excel_down} order by wr_datetime desc");

// 원글만 다운로드 (코멘트 제외) , 2013-10-21 추가
//$temp=sql_fetch_array(mysql_query("select count(*) from {$excel_down} where wr_is_comment = '0' and wr_content = '{$wr_id}' "));
//$result=sql_query("select * from {$excel_down} where wr_is_comment = '0' and wr_content = '{$wr_id}' order by wr_datetime desc");

$number=$temp[0];
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
.txt {mso-number-format:'\@'}
</style>
</head>

<body>
<table>
<tr>
<td>번호</td>
<td>제목</td>
<td>아이디</td>
<td>이름</td>
<td>작성일</td>

<td>필드1</td>
<td>필드2</td>
<td>필드3</td>
<td>필드4</td>
<td>필드5</td>
<td>필드6</td>
<td>필드7</td>
<td>필드8</td>
<td>필드9</td>
<td>필드10</td>
</tr>

<?php
while($data=sql_fetch_array($result)) {
echo "
<tr>
<td>{$number}</td>
<td>{$data['wr_subject']}</td>
<td>{$data['mb_id']}</td>
<td>{$data['wr_name']}</td>
<td class='txt'>{$data['wr_datetime']}</td>

<td class='txt'>{$data['wr_1']}</td>
<td class='txt'>{$data['wr_2']}</td>
<td class='txt'>{$data['wr_3']}</td>
<td class='txt'>{$data['wr_4']}</td>
<td class='txt'>{$data['wr_5']}</td>
<td class='txt'>{$data['wr_6']}</td>
<td class='txt'>{$data['wr_7']}</td>
<td class='txt'>{$data['wr_8']}</td>
<td class='txt'>{$data['wr_9']}</td>
<td class='txt'>{$data['wr_10']}</td>
</tr>
";
$number--;
}
?>
</table>
</body>
</html>

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 30개

넵 감사합니다. 관련링크 수정하겠습니다.
왜 이렇게 될까요?
g4는 이제 사용을 안해서 테스트 계획이 없습니다. -_-''
7년 전
감사합니다.
7년 전
저 왜이렇게 나오는걸까요? ㅠㅠ



Warning: include(/test/data/dbconfig.php): failed to open stream: No such file or directory in /home/hosting_users/onad4053/www/test/theme/shoes/skin/board/timer/excel.php on line 5 Warning: include(): Failed opening '/test/data/dbconfig.php' for inclusion (include_path='.:/usr/local/php53/lib/php') in /home/hosting_users/onad4053/www/test/theme/shoes/skin/board/timer/excel.php on line 5 Warning: mysql_connect(): Access denied for user 'onad4053'@'localhost' (using password: NO) in /home/hosting_users/onad4053/www/test/theme/shoes/skin/board/timer/excel.php on line 6 �쒕쾭�� �묒냽�섏� 紐삵뻽�듬땲��.
공개한 소스에는 include(/test/data/dbconfig.php) 가 포함되지 않습니다.
사용하신 내용을 다시 확인해주세요.

또한 data/dbconfig.php 는 그누보드5에서의 해당사항이며
그누보드4는 그 상위폴더에 dbconfig.php 가 존재합니다.

본문 소스를 조금(?) 수정했으니, 내용을 다시 참고해서 사용해보세요
3년 전
@해피정 그누보도 5에서 적용하긴 했는데...게시글, 댓글 등이 엑셀파일에 보이지는 않네요. 뭔가 다른 설정을 해야 하는지요?
4년 전
오 필요했던 자료 ㅠㅠ 감사합니다!
3년 전
$excel_down = $g5['table_prefix'].$_GET['bo_table']; //엑셀 다운로드 테이블
// $excel_down = "g5_write_free"; //엑셀 다운로드 테이블

주석으로 하면 데이터를 가지고 오는데요. 맨 위로 하면 가져오지 못하는데..게시판 이름을 뽑아오지 못하는 것 같은데..어떻게 하면 g5 게시판 g5_write_free 명칭을 뽑아 올 수 있는지요?
@라이프게임 그누보드5용은 https://www.happyjung.com/lecture/2851 입니다

게시글 목록

번호 제목
34706
34693
34563
34536
34521
34480
34479
34466
34437
34436
34435
34406
34398
34387
34382
34375
34364
34336
34294
34293