Created
April 5, 2011 08:30
-
-
Save IamSmith/903248 to your computer and use it in GitHub Desktop.
Output as a download
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$phpExcel = new PHPExcel(); | |
$phpExcel->getActiveSheet()->setTitle("My Sheet"); | |
$phpExcel->setActiveSheetIndex(0); | |
header("Content-Type: application/vnd.ms-excel"); | |
header("Content-Disposition: attachment; filename=\"filename.xls\""); | |
header("Cache-Control: max-age=0"); | |
$objWriter = PHPExcel_IOFactory::createWriter($phpExcel, "Excel5"); | |
$objWriter->save("php://output"); | |
exit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment