Files
code-cegled/_include/include_download_report.php
2020-07-12 13:47:12 +02:00

26 lines
396 B
PHP

<?php
# REPORT DOWNLOAD
if ($this->is_id()) {
if (!file_exists("./balance-report/{$this->get_id()}.csv")) {
return;
}
header('Content-type: application/csv');
header("Content-disposition: attachment; filename=\"".$this->get_id().".csv\"");
ob_clean();
flush();
readfile("./balance-report/{$this->get_id()}.csv");
}
else {
# NEM LEHET
}
exit(1);
?>