PHP & Others

DB내용 EXCEL로 변환

컨텐츠 정보

본문

헤더 써서 하거나, csv로 파일 만들거나..

<?
require_once("dbconn.php");

header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=myfile.xls" );
header( "Content-Description: PHP4 Generated Data" );

$sql = "SELECT * FROM tableName";
$stmt = mysql_query("$sql",$conn) or die(mysql_error());
while ($row = mysql_fetch_row($stmt)){
echo ("$row[0] $row[1] $row[2] $row[3] ... \\r\\n");
}
mysql_free_result($stmt);
mysql_close($conn);
?>

tip & tech 에서 검색해서 참고하기

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
해가 들면 어떻고, 바람이 불면 어떻고, 눈이 오면 어떠랴. 해가 들어주어도 고맙고, 바람이 불어주어도 고맙고, 눈이 와주어도 고마울 뿐. 그렇다, 고맙지 않은 것이 없다. 밤은 밤이어서 고맙고, 새벽은 새벽이어서 고맙고, 낮은 낮이어서 고맙다. 아, 고마운 삼라만상이여! (정채봉)