11/21: PHPでファイルをExcelとしてダウンロードさせる
Category: Web dev
Posted by: hajime osako
PHP TIPS Vol.5
header("Content-Disposition: inline; filename=\"".basename($path_file)."\""); header("Content-Length: ".$content_length); header("Content-Type: application/octet-stream"); あとHTMLヘッダーに: <meta http-equiv="Content-Type" content="application/vnd.ms-excel; charset=UTF-8"/>