diff --git a/export.php b/export.php index 21b29a9..6ba6242 100644 --- a/export.php +++ b/export.php @@ -2,15 +2,18 @@ require_once __DIR__ . "/vendor/autoload.php"; +if (empty($_POST["test_cases"])) { + header("Location: /~ben/testgen/"); + die(); +} -$excel = PHPExcel_IOFactory::load("export.xlsx"); - +// split input by line and place into template at cell B2 $cases = explode("\n", $_POST["test_cases"]); +$excel = PHPExcel_IOFactory::load("template.xlsx"); $excel->getActiveSheet()->fromArray(array_chunk($cases, 1), NULL, 'B2'); +// set the right download headers header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: attachment;filename="testcase-template.xls"'); header('Cache-Control: max-age=0'); -$writer = PHPExcel_IOFactory::createWriter($excel, 'Excel5'); -$writer->save('php://output'); - +PHPExcel_IOFactory::createWriter($excel, 'Excel5')->save('php://output'); diff --git a/export.xlsx b/template.xlsx similarity index 100% rename from export.xlsx rename to template.xlsx diff --git a/~$export.xlsx b/~$export.xlsx deleted file mode 100755 index ccf2a80..0000000 Binary files a/~$export.xlsx and /dev/null differ