PHP & Others

[re] DB내용 EXCEL로 변환

컨텐츠 정보

본문

PHP 내용을 엑셀(excel)로 저장하기

all2.php 파일
<a href=all.php>엑셀</a>

all.php 파일을 바로 열면 안되고, 링크를 눌러서 열게 해야 합니다.


다음은 all.php 파일
=========================

<?php
//Written by Dan Zarrella. Some additional tweaks provided by JP Honeywell
//pear excel package has support for fonts and formulas etc.. more complicated
//this is good for quick table dumps (deliverables)

$host="localhost";
$user="root"; // 사용자
$password="xxxxx";// 비번
$dataname="test"; // 데이터베이스

$linkID=mysql_connect("$host","$user","$password");
mysql_select_db("$dataname",$linkID);

$result = mysql_query('select * from 테이블명 limit 10', $linkID);
$count = mysql_num_fields($result);

for ($i = 0; $i < $count; $i++){
    $header .= mysql_field_name($result, $i)."\\t";
}

while($row = mysql_fetch_row($result)){
  $line = '';
  foreach($row as $value){
    if(!isset($value) || $value == ""){
      $value = "\\t";
    }else{
# important to escape any quotes to preserve them in the data.
      $value = str_replace('"', '""', $value);
# needed to encapsulate data in quotes because some data might be multi line.
# the good news is that numbers remain numbers in Excel even though quoted.
      $value = '"' . $value . '"' . "\\t";
    }
    $line .= $value;
  }
  $data .= trim($line)."\\n";
}
# this line is needed because returns embedded in the data have "\\r"
# and this looks like a "box character" in Excel
  $data = str_replace("\\r", "", $data);


# Nice to let someone know that the search came up empty.
# Otherwise only the column name headers will be output to Excel.
if ($data == "") {
  $data = "\\nno matching records found\\n";
}

# This line will stream the file to the user rather than spray it across the screen
//header("Content-type: application/octet-stream");
Header("Content-type: file/unknown");

# replace excelfile.xls with whatever you want the filename to default to
header("Content-Disposition: attachment; filename=all.xls");
header("Pragma: no-cache");
header("Expires: 0");

echo $header."\\n".$data;
?>

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
우리의 꿈은, 뒤에 오는 사람들이 우리를 딛고 우리 위에서 이루게 하는 것입니다. 나는 평생을 창조적인 작업을 위해서 살아왔습니다. 누가 하라고 해서 한 것이 아니라 그것이 나의 삶 그 자체의 즐거움이었기 때문입니다. 현실을 직시하며 현재의 수준을 유지하라. 그리고 더 먼 곳을 향하는 시야를 가져라.