묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
"pass" => "비번",
"db" => "DB명",
"table" => "xe_documents",
특정 게시판 리스트를 엑셀파일로 출력
2013.01.24 16:36
게시판을 클릭했을 때 목록 list 보여지고 있는 항목을 가져오고 싶은데 ...
아래처럼 하면 확장변수 ID 값을 cn으로 줬을때 값을 표기 못하는데 ,표기 하는 방법없을까요?
<?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"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<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>
댓글 1
-
송동우
2013.01.24 16:54
-
유유히
2013.01.24 17:07
확장변수 ID cn 줬는데 그건 표시 하는 방법 없나요? -
송동우
2013.01.24 17:28
확장변수 테이블은 따로 있습니다. 질문의 코드는 documents 테이블입니다...... -
유유히
2013.01.24 17:38
그걸 같이 넣을순 없나요? 넣는 방법좀 알려 주시면 감사 하겠습니다.
그대로 카피해서
db 정보만 입력하고 사용해봤는데
그런 오류 안납니다.......