Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ltms.eemo.co.kr
/
public_html
/
super
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ltms.eemo.co.kr/public_html/super/download_feed_exel_bak.php
<?php include_once("dbconn.php"); include_once("lib.php"); include 'PHPExcel.php'; foreach($_GET as $key => $value) { ${$key}=mysql_real_escape_string(trim($value)); } foreach($_POST as $key => $value) { ${$key}=mysql_real_escape_string(trim($value)); } // HTML 테이블 $html = '<meta http-equiv="content-type" content="text/html; charset=utf-8"> <table> <tr> <th>no</th> <th>지역</th> <th>농장주</th> <th>초이</th> <th>전기</th> <th>중기</th> <th>후기</th> <th width="300">기타</th> <th>도착시간</th> </tr> </table>'; // 임시파일 저장 후 로드 $tmpfile = '/tmp/'.uniqid().'.html'; file_put_contents($tmpfile, $html); $reader = new PHPExcel_Reader_HTML; $content = $reader->load($tmpfile); unlink( $tmpfile ); // 엑셀 출력 $writer = PHPExcel_IOFactory::createWriter($content, 'Excel2007'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="table-to-excel.xlsx"'); header('Cache-Control: max-age=0'); $writer->save('php://output'); ?>