Skip to content

Instantly share code, notes, and snippets.

@vijay07roy
vijay07roy / index.php
Created September 27, 2018 08:03 — forked from vielhuber/index.php
PHPExcel output directly to browser #php
<?php
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="' . $filename . '.xlsx"');
$objWriter->save('php://output');
die();