csv.php 369 B

12345678910
  1. <?php
  2. require_once (dirname(__FILE__)."/controllers/RequestController.php");
  3. $req = new RequestController();
  4. $data = json_decode(file_get_contents('php://input'), true);
  5. header('Cache-Control: no-cache, must-revalidate');
  6. header('Content-type: text/csv; charset=utf-8');
  7. header('Content-disposition: attachment;filename=Abrechnung.csv');
  8. echo $req->CsvExport($data);