묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
"pass" => "비번",
"db" => "DB명",
"table" => "xe_documents",
특정 2~3개 이상게시판 리스트를 엑셀파일로 출력
2013.02.05 15:23
게시판을 클릭했을 때 목록 list 보여지고 있는 항목을 엑셀파일로 출력 가져오고 싶은데
아래처럼 하면 한개 게시판에 내용밖에 다운 안되는데 어떻게 하면 2~3개 이상 게시판에 내용 다운하게 하나요?
<?php
$info = array(
"host" => "호스트",
"user" => "아이디","pass" => "비번",
"db" => "DB명",
"table" => "xe_documents",
"module_srl" => "게시판모듈번호",
);
$getFields = array("title","nick_name","regdate"); //출력원하는 칼럼을 배열로 입력
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=documents.xls");
$con = mysql_connect($info[host], $info[user], $info[pass]) || die(mysql_error());
mysql_query("set names utf8");
$con_db = mysql_select_db($info[db]) || die(mysql_error());
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content=text/html; charset="utf-8">
</head>
<body>
<table border=1>
<tr align=center>
<?php
$fields = mysql_list_fields("$info[db]", "$info[table]");
$columns = mysql_num_fields($fields);
for( $i=0 ; $i<$columns ; $i++ )
{
$field[$i]=mysql_field_name($fields, $i);
if( in_array($field[$i], $getFields) ) echo "<th>".$field[$i]."</th>";
}
?>
</tr>
<?php
$result = mysql_query("select * from $info[table] where module_srl = $info[module_srl]");
while( $data = mysql_fetch_assoc($result) )
{
echo"<tr>";
foreach( $data as $key => $val )
{
if( in_array($key, $getFields) ) echo "<td>".htmlspecialchars($val)."</td>";
}
echo"</tr>";
}
?>
</table>
</body>
</html>